diff --git a/.github/workflows/close_stale_issues_and_prs.yml b/.github/workflows/close_stale_issues_and_prs.yml new file mode 100644 index 000000000..36e8c18d9 --- /dev/null +++ b/.github/workflows/close_stale_issues_and_prs.yml @@ -0,0 +1,26 @@ +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '0 * * * *' + workflow_dispatch: + +permissions: + actions: write + issues: write + pull-requests: write + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v10 + with: + operations-per-run: 50 + stale-issue-message: 'This issue is stale because it has been open for 90 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 for 30 days with no activity. Remove stale label or comment or this will be closed in 7 days.' + close-issue-message: 'This issue was closed because it has been open for more than 90 days with no activity.' + close-pr-message: 'This PR was closed because it has been open for more than 30 days with no activity.' + days-before-issue-stale: 90 + days-before-pr-stale: 30 + days-before-issue-close: 7 + days-before-pr-close: 7