From 990ed83f58f3d64a3817dca1c7e07521cf66dfba Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Mon, 8 Jul 2024 13:33:42 -0400 Subject: [PATCH] Add stale configuration to replace mlpack-bot. --- .github/workflows/stale.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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 0000000000..2e033416b9 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,23 @@ +name: Close inactive issues +on: + schedule: + - cron: "30 1 * * *" + +jobs: + close-issues: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: actions/stale@9 + with: + days-before-issues-stale: 30 + days-before-issue-close: 7 + stale-issue-label: "s: stale", + stale-issue-message: "This issue has been automatically marked as stale because it has not had any recent activity. It will be closed in 7 days if no further activity occurs. Thank you for your contributions! :+1:" + days-before-pr-stale: 30, + days-before-pr-close: 14 + repo-token: ${{ secrets.GITHUB_TOKEN }} + exempt-issue-labels: "s: keep open" + exempt-pr-labels: "s: keep open"