From ea5b4cefbd47aa847aa6036a1e53fed15b484974 Mon Sep 17 00:00:00 2001 From: Stavros Date: Mon, 14 Apr 2025 20:15:50 +0300 Subject: [PATCH] chore: add stale bot --- .github/workflows/stale.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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 0000000..4e104ab --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,20 @@ +name: Close stale issues and PRs +on: + schedule: + - cron: 0 10 * * * + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v9 + with: + days-before-stale: 30 + stale-pr-message: This PR has been inactive for 30 days and will be marked as stale. + stale-issue-message: This issue has been inactive for 30 days and will be marked as stale. + close-issue-message: Closed for inactivity. + close-pr-message: Closed for inactivity. + stale-issue-label: stale + stale-pr-label: stale + exempt-issue-labels: pinned + exempt-pr-labels: pinned