From 21de549fd595c2ce066074d1c85dd163a8432cfc Mon Sep 17 00:00:00 2001 From: Yi Zha Date: Tue, 28 Nov 2023 14:47:01 +0800 Subject: [PATCH 1/4] chore: add GitHub action for stale issues and PRs Signed-off-by: Yi Zha --- .github/workflows/stale.yml | 19 +++++++++++++++++++ 1 file changed, 19 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 000000000..60ba1c63a --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,19 @@ +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 5016c401802bf429b6cefecebc17ec7a933ca756 Mon Sep 17 00:00:00 2001 From: Yi Zha Date: Tue, 28 Nov 2023 16:25:44 +0800 Subject: [PATCH 2/4] add license header Signed-off-by: Yi Zha --- .github/workflows/stale.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 60ba1c63a..8666a2acb 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -1,3 +1,16 @@ +# 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: From de2a96894faba07c388f3fbdd9ce1289d6adb69c Mon Sep 17 00:00:00 2001 From: Yi Zha Date: Tue, 28 Nov 2023 17:08:16 +0800 Subject: [PATCH 3/4] excempt all milestones Signed-off-by: Yi Zha --- .github/workflows/stale.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 8666a2acb..c26ea29b8 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -30,3 +30,5 @@ jobs: days-before-pr-stale: 45 days-before-issue-close: 30 days-before-pr-close: 30 + exempt-all-milestones: true + From 1eeff96ce7490c9ea42dcc0045e5dadfa131b98e Mon Sep 17 00:00:00 2001 From: Yi Zha Date: Tue, 20 Feb 2024 10:27:22 +0800 Subject: [PATCH 4/4] 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 c26ea29b8..0aeee5fdf 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