Close stale issues and PRs #461
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 stale issues and PRs | |
on: | |
schedule: | |
- cron: "0 12 * * *" | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
exempt-issue-labels: "pinned" | |
stale-issue-message: "@ricardozanini @hbelmiro This is being labeled as Stale." | |
stale-pr-message: "@ricardozanini @hbelmiro This is being labeled as Stale." | |
close-issue-message: "@ricardozanini @hbelmiro This is being closed due to inactivity." | |
close-pr-message: "@ricardozanini @hbelmiro This is being closed due to inactivity." |