From ba0661d0079f4cac629aa6a880f3660c739dcea4 Mon Sep 17 00:00:00 2001 From: Yi Zha Date: Tue, 28 Nov 2023 16:27:55 +0800 Subject: [PATCH 1/3] chore: add GitHub action for stale issues and PRs Signed-off-by: Yi Zha --- .github/workflows/stale.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 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 00000000..8666a2ac --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,32 @@ +# Copyright The Notary Project Authors. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +name: "Close stale issues and PRs" +on: + schedule: + - cron: "30 1 * * *" + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v8 + 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 30 days." + stale-pr-message: "This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 30 days." + close-issue-message: "This issue was closed because it has been stalled for 30 days with no activity." + close-pr-message: "This PR was closed because it has been stalled for 30 days with no activity." + days-before-issue-stale: 60 + days-before-pr-stale: 45 + days-before-issue-close: 30 + days-before-pr-close: 30 From 12178c2e44913710e30ad5750f4771512b1bc2db Mon Sep 17 00:00:00 2001 From: Yi Zha Date: Tue, 28 Nov 2023 17:07:09 +0800 Subject: [PATCH 2/3] exempt all milestones Signed-off-by: Yi Zha --- .github/workflows/stale.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 8666a2ac..4a539812 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -30,3 +30,4 @@ jobs: days-before-pr-stale: 45 days-before-issue-close: 30 days-before-pr-close: 30 + exempt-all-milestones: true From d77176ad6c50d26b90c1863aa28dd071f7448ed2 Mon Sep 17 00:00:00 2001 From: Yi Zha Date: Tue, 20 Feb 2024 10:11:06 +0800 Subject: [PATCH 3/3] update per comments Signed-off-by: Yi Zha --- .github/workflows/stale.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 4a539812..7964fdd8 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -22,10 +22,10 @@ jobs: steps: - uses: actions/stale@v8 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 30 days." - stale-pr-message: "This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 30 days." - close-issue-message: "This issue was closed because it has been stalled for 30 days with no activity." - close-pr-message: "This PR was closed because it has been stalled for 30 days with no activity." + stale-issue-message: "This issue is stale because it has been opened for 60 days with no activity. Remove stale label or comment. Otherwise, it will be closed in 30 days." + stale-pr-message: "This PR is stale because it has been opened for 45 days with no activity. Remove stale label or comment. Otherwise, it will be closed in 30 days." + close-issue-message: "Issue closed due to no activity in the past 30 days." + close-pr-message: "PR closed due to no activity in the past 30 days." days-before-issue-stale: 60 days-before-pr-stale: 45 days-before-issue-close: 30