From f2994c2d750b2f09a2596eae20fa9444d3af635c Mon Sep 17 00:00:00 2001 From: Erik Westrup Date: Tue, 3 Oct 2023 19:07:24 +0200 Subject: [PATCH] Add stale action --- .github/workflows/stale.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 00000000..7d8c2ab2 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,13 @@ +name: "Close stale issues and PRs" +on: + schedule: + - cron: "0 0 * * 0" + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v8 + with: + stale-issue-message: "Issue is stale; closing." + stale-pr-message: "PR is stale; closing."