From 9dd35263af843a5e803ae6982fa4dfd38f0f235f Mon Sep 17 00:00:00 2001 From: Michael <35783820+mib1185@users.noreply.github.com> Date: Tue, 15 Oct 2024 22:51:52 +0200 Subject: [PATCH] create stale workflow --- .github/workflows/stale.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 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 0000000..26b86b8 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,24 @@ +name: Stale + +on: + schedule: + - cron: '00 10 * * *' + workflow_dispatch: + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - name: stale issues + uses: actions/stale@v9.0.0 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + days-before-stale: 60 + days-before-close: 7 + days-before-pr-stale: -1 + days-before-pr-close: -1 + stale-issue-label: 'stale' + stale-issue-message: > + There hasn't been any activity on this issue recently. + This issue has now been marked as stale and will be closed if no + further activity occurs.