From 264833ac54eca1aca19d2b34bd4c11b37dc00ae6 Mon Sep 17 00:00:00 2001 From: lisenet Date: Sat, 25 Nov 2023 12:30:49 +0000 Subject: [PATCH] Add stale action --- .github/workflows/stale-action.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/stale-action.yml diff --git a/.github/workflows/stale-action.yml b/.github/workflows/stale-action.yml new file mode 100644 index 0000000..b279be5 --- /dev/null +++ b/.github/workflows/stale-action.yml @@ -0,0 +1,29 @@ +--- +name: "Close stale issues and PRs" + +on: + schedule: + - cron: "37 13 * * *" + +permissions: + issues: write + pull-requests: write + +jobs: + stale: + runs-on: ubuntu-22.04 + steps: + - uses: actions/stale@v8 + with: + stale-issue-message: "This issue is stale because it has been open 180 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 stalled for 7 days with no activity." + stale-pr-message: "This PR is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days." + close-pr-message: "This PR was closed because it has been stalled for 7 days with no activity." + stale-issue-label: "stale" + stale-pr-label: "stale" + days-before-issue-stale: 180 + days-before-pr-stale: 180 + days-before-issue-close: 7 + days-before-pr-close: 7 + exempt-issue-labels: "in progress" + exempt-pr-labels: "in progress"