Skip to content

Add skill-shelf extension #88058

Add skill-shelf extension

Add skill-shelf extension #88058

Workflow file for this run

# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: Close stale issues and PRs
on:
workflow_dispatch:
repository_dispatch:
types: [trigger-stale-workflow]
pull_request_target:
paths:
- "extensions/**"
branches: [main, master]
issues:
types: ["edited"]
issue_comment:
types: ["edited"]
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
if: github.repository == 'raycast/extensions'
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.RAYCAST_BOT_API_ACCESS_TOKEN }}
only-issue-labels: "never-match-this"
# PRs
stale-pr-message: "This pull request has been automatically marked as stale because it did not have any recent activity.\n\nIt will be closed if no further activity occurs in the next 7 days to keep our backlog clean 😊"
close-pr-message: "This pull request has been automatically closed due to inactivity.\n\nFeel free to comment in the thread when you're ready to continue working on it 🙂\n\nYou can also catch us in [Slack](https://www.raycast.com/community) if you want to discuss this."
exempt-pr-labels: "api, documentation, dev tools, app, status: blocked by API, rename, Dont close"
stale-pr-label: "status: stalled"
days-before-pr-stale: 14
days-before-pr-close: 7
# Limiting
operations-per-run: 100
ascending: true
# Debug
#debug-only: true