Close inactive issues #3
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: Close inactive issues | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "30 2 * * 0" | |
jobs: | |
close-issues: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
days-before-issue-stale: 365 | |
days-before-issue-close: 28 | |
stale-issue-label: "stale" | |
stale-issue-message: "This issue is stale because it has been open for 365 days with no activity. This issue will be automatically closed within 28 days if there is no further activity." | |
close-issue-message: "This issue was closed because it has been inactive for 28 days since being marked as stale." | |
days-before-pr-stale: -1 | |
days-before-pr-close: -1 | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |