diff --git a/.github/stale.yml b/.github/stale.yml deleted file mode 100644 index 1c26cb680..000000000 --- a/.github/stale.yml +++ /dev/null @@ -1,22 +0,0 @@ -# Number of days of inactivity before an issue becomes stale -daysUntilStale: 120 - -# Number of days of inactivity before a stale issue is closed -daysUntilClose: 14 - -# Issues with these labels will never be considered stale -exemptLabels: - - security - - pinned - -# Label to use when marking an issue as stale -staleLabel: stale - -# Comment to post when marking an issue as stale. Set to `false` to disable -markComment: > - Hey! The issue has been automatically marked as stale because it has not had - recent activity. It will be closed soon if no further activity occurs. Please - reply here if you wish for the issue to be kept open. - -# Comment to post when closing a stale issue. Set to `false` to disable -closeComment: false diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 000000000..10d9d2fda --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,31 @@ +name: "Close Stale PRs" +on: + workflow_dispatch: + schedule: + - cron: "30 1 * * *" + +permissions: + issues: write + pull-requests: write + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v5 + with: + stale-pr-message: "This PR is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 5 days" + stale-issue-message: "This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 5 days" + close-pr-message: "Automatically closed due to inactivity" + close-issue-message: "Automatically closed due to inactivity" + days-before-issue-stale: 120 + days-before-pr-stale: 60 + days-before-close: 5 + operations-per-run: 60 + stale-issue-label: stale + stale-pr-label: stale + exempt-issue-labels: + - security + - pinned + - name: Print outputs + run: echo ${{ join(steps.stale.outputs.*, ',') }}