Close inactive issues #81
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
# Automate stale iossue tagging and closing | |
name: Close inactive issues | |
on: | |
schedule: | |
- cron: "30 1 * * *" | |
permissions: | |
contents: read | |
jobs: | |
close-issues: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0 | |
with: | |
stale-issue-label: "needs info" | |
days-before-issue-stale: -1 | |
days-before-issue-close: 60 | |
close-issue-message: > | |
Without additional information we're not able to resolve this issue. | |
Feel free to add more info or respond to any questions above and we | |
can reopen the case. Thanks for your contribution! | |
days-before-pr-stale: -1 | |
days-before-pr-close: -1 | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |