From f86c102c95f31b39620fb81c600eb06a135032c1 Mon Sep 17 00:00:00 2001 From: Peter Date: Sat, 22 Jan 2022 18:17:08 +0100 Subject: [PATCH] [GH-Actions][stale] Add close_old_issues_and_prs.yml --- .../workflows/close_old_issues_and_prs.yml | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/close_old_issues_and_prs.yml diff --git a/.github/workflows/close_old_issues_and_prs.yml b/.github/workflows/close_old_issues_and_prs.yml new file mode 100644 index 000000000..21ae2da49 --- /dev/null +++ b/.github/workflows/close_old_issues_and_prs.yml @@ -0,0 +1,36 @@ +name: 'Close stale issues and PRs' +on: + schedule: + # Once every day at midnight UTC + - cron: "0 0 * * *" + workflow_dispatch: # Allow to run workflow manually + issue_comment: # Run workflow on comments + +jobs: + stale: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - name: Mark/Close Stale Issues and Pull Requests 🗑️ + uses: actions/stale@v4 + with: + repo-token: ${{ secrets.STALE_ACTION_PAT }} + days-before-stale: 60 + days-before-close: 7 + stale-issue-message: > + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. + stale-pr-message: > + This pull request has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. + exempt-issue-labels: "pinned,enhancement,neverstale" + exempt-pr-labels: "pinned,enhancement,neverstale" + stale-issue-label: "stale" + stale-pr-label: "stale" + exempt-draft-pr: "true" + operations-per-run: "250" + ascending: "true" + #DRY-RUN + debug-only: "false"