diff --git a/.github/workflows/issue-pr-staler.yml b/.github/workflows/issue-pr-staler.yml new file mode 100644 index 00000000..24cd0177 --- /dev/null +++ b/.github/workflows/issue-pr-staler.yml @@ -0,0 +1,23 @@ +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '30 1 * * *' + +permissions: + contents: write # only for delete-branch option + issues: write + pull-requests: write + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v9 + with: + stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.' + stale-pr-message: 'This PR is stale because it has been open 60 days with no activity.' + close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.' + exempt-pr-labels: dependencies + days-before-stale: 60 + days-before-close: 7 + days-before-pr-close: -1 \ No newline at end of file