From 3220330f64baa90670dd4bb2a84661b674e4ff08 Mon Sep 17 00:00:00 2001 From: Stefano Fiorucci Date: Mon, 28 Oct 2024 17:11:31 +0100 Subject: [PATCH] introduce stalebot (#1157) --- .github/workflows/CI_stale.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/CI_stale.yml diff --git a/.github/workflows/CI_stale.yml b/.github/workflows/CI_stale.yml new file mode 100644 index 000000000..5a4b3b467 --- /dev/null +++ b/.github/workflows/CI_stale.yml @@ -0,0 +1,15 @@ +name: 'Stalebot' +on: + schedule: + - cron: '30 1 * * *' + +jobs: + makestale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v9 + with: + any-of-labels: 'community-triage' + stale-pr-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 10 days.' + days-before-stale: 30 + days-before-close: 10 \ No newline at end of file