From 6ad067afedfb2f2d582812f0612931c400cb9f24 Mon Sep 17 00:00:00 2001 From: Eldwan Brianne Date: Tue, 16 Mar 2021 14:18:23 +0100 Subject: [PATCH] Changed stale bot to stale action --- .github/stale.yml | 19 ------------------- .github/workflows/stale.yml | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 19 deletions(-) delete mode 100644 .github/stale.yml create mode 100644 .github/workflows/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml deleted file mode 100644 index fff3b2a..0000000 --- a/.github/stale.yml +++ /dev/null @@ -1,19 +0,0 @@ -# Number of days of inactivity before an issue becomes stale -daysUntilStale: 20 -# Number of days of inactivity before a stale issue is closed -daysUntilClose: 7 -# Issues with these labels will never be considered stale -exemptLabels: - - pinned - - security -# Label to use when marking an issue as stale -staleLabel: - - wontfix - - stale -# Comment to post when marking an issue as stale. Set to `false` to disable -markComment: > - This issue has been automatically marked as stale after 20d because it has not had - recent activity. It will be closed if no further activity occurs. Thank you - for your contributions. -# Comment to post when closing a stale issue. Set to `false` to disable -closeComment: false \ No newline at end of file diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 0000000..fed8060 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,19 @@ + +name: 'Stale issue handler' +on: + workflow_dispatch: + schedule: + - cron: '0 0 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v3 + with: + stale-issue-message: 'This issue has been automatically marked as stale after 30d because it has not had + recent activity. It will be closed in 5d if no further activity occurs. Thank you for your contributions.' + days-before-stale: 30 + days-before-close: 5 + stale-issue-label: 'stale,wontfix' + exempt-issue-labels: 'pinned,security,block' \ No newline at end of file