From 2f4fc71ecb542983430018b3119d9742f1eff159 Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Sun, 5 Nov 2023 12:42:14 +0100 Subject: [PATCH] ci(actions): :memo: implement close-stale-issues github actions workflow --- .github/workflows/close-stale-issues.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/close-stale-issues.yml diff --git a/.github/workflows/close-stale-issues.yml b/.github/workflows/close-stale-issues.yml new file mode 100644 index 00000000..cdff2d75 --- /dev/null +++ b/.github/workflows/close-stale-issues.yml @@ -0,0 +1,17 @@ +name: Close Stale Issues + +on: + schedule: + - cron: 30 1 * * * + +permissions: + issues: write + +jobs: + stale: + runs-on: ubuntu-latest + + steps: + - uses: actions/stale@v8.0.0 + with: + stale-issue-message: It seems that there has been no activity on this issue for a while. I decided to mark issues as stale when they haven't had any activity for a certain amount of time to help maintain the project's focus on active problems. It's nothing personal, I just have only so much free time. If you think this issue is still relevant, please comment with a reason why it should be reopened. Thank you for your contributions to the project!