From a37eabba98c15ea7c509392fd09666a640f77849 Mon Sep 17 00:00:00 2001 From: Oren Zipori Date: Tue, 2 Nov 2021 16:52:38 +0200 Subject: [PATCH] Adding new github workflow for stale issues Adding a Github workflow that will mark issues that didn't have any activity on them for the last 60 days and put a label of stale on them. After 7 days if the stale issue didn't have any updates the issue will be deleted. --- .github/workflows/stale.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/stale.yaml diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml new file mode 100644 index 0000000..f94a436 --- /dev/null +++ b/.github/workflows/stale.yaml @@ -0,0 +1,16 @@ +name: 'Close stale issues' +on: + schedule: + - cron: '30 1 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v4 + with: + stale-issue-message: 'This issue is stale because it has been open 60 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 5 days with no activity.' + days-before-stale: 60 + days-before-close: 7 +