🚮 Close feedback issues #226
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 feedback issues" | |
on: | |
schedule: | |
- cron: "0 14 * * 1,3,5" | |
permissions: | |
contents: read | |
jobs: | |
stale: | |
permissions: | |
issues: write # for actions/stale to close stale issues | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9.0.0 | |
with: | |
days-before-stale: 30 | |
days-before-close: 7 | |
operations-per-run: 30 | |
stale-issue-message: | | |
This issue is missing some feedbacks. 👻 | |
Please have a look to the discussion, thanks. 🦎 | |
stale-issue-label: 'stale' | |
only-labels: 'feedback' |