From 1ea2b233b757a25d7209936264c9e03f51cdacf0 Mon Sep 17 00:00:00 2001 From: Patryk Dobrowolski Date: Tue, 23 Jan 2024 14:46:55 +0100 Subject: [PATCH 1/4] Transition from the GitHub Stale app to GitHub Actions. --- .github/workflows/stale.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 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..7d59196 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,31 @@ +name: 'Manage Stale Issues and Pull Requests' + +on: + schedule: + - cron: '0 0 * * *' # Runs daily at midnight + workflow_dispatch: # Allows manual triggering of the workflow + +jobs: + stale: + runs-on: [self-hosted, solinas] + steps: + - uses: actions/stale@v5 + with: + days-before-stale: 60 + days-before-close: 7 + stale-issue-label: 'lifecycle/stale' + stale-pr-label: 'lifecycle/stale' + exempt-issue-labels: 'lifecycle/frozen,lifecycle/active' + exempt-pr-labels: 'lifecycle/frozen,lifecycle/active' + stale-issue-message: | + This issue has been automatically marked as stale due to the lack of recent activity. It will soon be closed if no further activity occurs. + Thank you for your contributions. + stale-pr-message: | + This pull request has been automatically marked as stale due to the lack of recent activity. It will soon be closed if no further activity occurs. + Thank you for your contributions. + close-issue-message: | + This issue has been automatically closed due to the lack of recent activity. + /lifecycle rotten + close-pr-message: | + This pull request has been automatically closed due to the lack of recent activity. + /lifecycle rotten From d0f3e050a54770b77adce8e7e38e930e574e1ee7 Mon Sep 17 00:00:00 2001 From: Patryk Dobrowolski Date: Tue, 23 Jan 2024 14:49:27 +0100 Subject: [PATCH 2/4] Update stale.yml --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 7d59196..38d2ac5 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -7,7 +7,7 @@ on: jobs: stale: - runs-on: [self-hosted, solinas] + runs-on: ubuntu-latest steps: - uses: actions/stale@v5 with: From 34c5280ec3c9a967f95f90a32de00a647c7b5bf5 Mon Sep 17 00:00:00 2001 From: Patryk Dobrowolski Date: Tue, 23 Jan 2024 14:54:40 +0100 Subject: [PATCH 3/4] Swap --- .github/stale.yml | 19 ------------------- .github/workflows/stale.yml | 4 ++-- 2 files changed, 2 insertions(+), 21 deletions(-) delete mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml deleted file mode 100644 index b70d9ba..0000000 --- a/.github/stale.yml +++ /dev/null @@ -1,19 +0,0 @@ -# Number of days of inactivity before an issue becomes stale -daysUntilStale: 60 -# Number of days of inactivity before a stale issue is closed -daysUntilClose: 7 -# Label to use when marking an issue as stale -staleLabel: lifecycle/stale -# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable -exemptLabels: - - lifecycle/frozen - - lifecycle/active -# Comment to post when marking an issue as stale. Set to `false` to disable -markComment: | - This issue has been automatically marked as stale due to the lack of recent activity. It will soon 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: | - This issue has been automatically closed due to the lack of recent activity. - /lifecycle rotten - diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 38d2ac5..31b95ba 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -9,9 +9,9 @@ jobs: stale: runs-on: ubuntu-latest steps: - - uses: actions/stale@v5 + - uses: actions/stale@v9 with: - days-before-stale: 60 + days-before-stale: 0 days-before-close: 7 stale-issue-label: 'lifecycle/stale' stale-pr-label: 'lifecycle/stale' From 7092d2b60fde4fce1c9d462159f077db14cfd372 Mon Sep 17 00:00:00 2001 From: Patryk Dobrowolski Date: Tue, 23 Jan 2024 14:57:15 +0100 Subject: [PATCH 4/4] Update stale.yml --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 31b95ba..1d415fe 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -11,7 +11,7 @@ jobs: steps: - uses: actions/stale@v9 with: - days-before-stale: 0 + days-before-stale: 60 days-before-close: 7 stale-issue-label: 'lifecycle/stale' stale-pr-label: 'lifecycle/stale'