Close stalled issues and PRs #297
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 stalled issues and PRs | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
stale: | |
if: github.repository == 'aws/amazon-cloudwatch-agent' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v7 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
days-before-pr-stale: 7 | |
stale-pr-message: 'This PR was marked stale due to lack of activity.' | |
days-before-issue-stale: 90 | |
stale-issue-message: 'This issue was marked stale due to lack of activity.' | |
days-before-issue-close: 30 | |
close-issue-message: Closing this because it has stalled. Feel free to reopen if this issue is still relevant, or to ping the collaborator who labeled it stalled if you have any questions. | |
# Do not close PRs | |
days-before-pr-close: -1 | |
# Do not close things assigned to milestones | |
exempt-all-milestones: true | |
exempt-issue-labels: 'status/backlog,bug,enhancement' |