From fa14d6f2b4410debbb667b49c3c2ec9131ffbd67 Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Sat, 26 Dec 2020 15:33:44 +0000 Subject: [PATCH] Try stale bot, debug only for now --- .github/workflows/stale-issues.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/stale-issues.yml diff --git a/.github/workflows/stale-issues.yml b/.github/workflows/stale-issues.yml new file mode 100644 index 00000000..df749aad --- /dev/null +++ b/.github/workflows/stale-issues.yml @@ -0,0 +1,19 @@ +name: Stale Issues + +on: + workflow_dispatch: + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + days-before-stale: 60 + days-before-close: 7 + stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove status/stale label or comment or this will be closed in 7 days' + stale-issue-label: status/stale + close-issue-label: status/closed-as-stale + exempt-issue-labels: status/on-hold + debug-only: true