From 0141e5872e190bdddf8c6fd7931db1902f018502 Mon Sep 17 00:00:00 2001 From: lisenet Date: Sat, 25 Nov 2023 12:24:47 +0000 Subject: [PATCH] Add stale action --- .github/workflows/stale-action.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 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..8ea4d22 --- /dev/null +++ b/.github/workflows/stale-action.yml @@ -0,0 +1,28 @@ +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"