Stale workflow #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Stale workflow | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '45 11 * * *' | |
jobs: | |
stale: | |
name: "Stale Bot" | |
runs-on: "ubuntu-latest" | |
permissions: | |
issues: "write" | |
pull-requests: "write" | |
steps: | |
- name: "Stale" | |
uses: "actions/stale@v9" | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
stale-issue-label: "stale" | |
exempt-issue-labels: "pinned,security,long running,discussion,vision,pending,verified" | |
stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." | |
close-issue-message: "This issue has been closed as no further activity has occurred." | |
days-before-issue-stale: 30 | |
days-before-issue-close: 5 | |
# disabling stale bot for PRs | |
days-before-pr-close: -1 | |
days-before-pr-stale: -1 |