From 79acb1258153f406faa54cd08bfdc08366e00643 Mon Sep 17 00:00:00 2001 From: schristoff <28318173+schristoff@users.noreply.github.com> Date: Mon, 6 Jan 2025 13:15:05 -0700 Subject: [PATCH] chore: add stalebot (#3375) Signed-off-by: schristoff <28318173+schristoff@users.noreply.github.com> --- .github/actions/stale/actions.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..5a354586a7 --- /dev/null +++ b/.github/actions/stale/actions.yml @@ -0,0 +1,19 @@ +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-issue-stale: 60 + days-before-pr-stale: 45 + days-before-close: 10 + days-before-pr-close: -1 \ No newline at end of file