From 0a4b5a0e919b920c30d26d8eb45b74afba658fda Mon Sep 17 00:00:00 2001 From: schristoff <28318173+schristoff@users.noreply.github.com> Date: Mon, 6 Jan 2025 12:25:22 -0700 Subject: [PATCH 1/2] add stalebot Signed-off-by: schristoff <28318173+schristoff@users.noreply.github.com> --- .github/actions/stale/actions.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/actions/stale/actions.yml diff --git a/.github/actions/stale/actions.yml b/.github/actions/stale/actions.yml new file mode 100644 index 0000000000..95bfb1faaa --- /dev/null +++ b/.github/actions/stale/actions.yml @@ -0,0 +1,18 @@ +name: 'Close stale issues and PR' +on: + schedule: + - cron: '30 1 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v9 + 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 10 days.' + stale-pr-message: 'This PR is stale because it has been open 45 days with no activity.' + close-issue-message: 'This issue was closed because it has been stalled for 10 days with no activity.' + exempt-all-milestones: true + days-before-stale: 60 + days-before-close: 10 + days-before-pr-close: -1 \ No newline at end of file From b8f3cb5021d676888928af53a49f708d4ab926aa Mon Sep 17 00:00:00 2001 From: schristoff <28318173+schristoff@users.noreply.github.com> Date: Mon, 6 Jan 2025 12:34:04 -0700 Subject: [PATCH 2/2] add pr stale timeline Signed-off-by: schristoff <28318173+schristoff@users.noreply.github.com> --- .github/actions/stale/actions.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/stale/actions.yml b/.github/actions/stale/actions.yml index 95bfb1faaa..5a354586a7 100644 --- a/.github/actions/stale/actions.yml +++ b/.github/actions/stale/actions.yml @@ -13,6 +13,7 @@ jobs: stale-pr-message: 'This PR is stale because it has been open 45 days with no activity.' close-issue-message: 'This issue was closed because it has been stalled for 10 days with no activity.' exempt-all-milestones: true - days-before-stale: 60 + days-before-issue-stale: 60 + days-before-pr-stale: 45 days-before-close: 10 days-before-pr-close: -1 \ No newline at end of file