From 274a771d8b7a94fc2a87e5ac303f464010602445 Mon Sep 17 00:00:00 2001 From: pa Date: Wed, 25 Mar 2026 14:36:20 +0900 Subject: [PATCH] add actions/stale --- .github/workflows/stale.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 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 00000000..91238c23 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,24 @@ +name: Mark and close stale issues + +on: + schedule: + - cron: "0 2 * * *" + workflow_dispatch: + +permissions: + issues: write + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v10 + with: + stale-issue-label: stale + days-before-issue-stale: 60 + days-before-issue-close: 14 + exempt-issue-labels: bug,planned,pinned,security,done,in progress + operations-per-run: 100 + close-issue-message: > + Closing this issue due to inactivity. + Feel free to comment or reopen it if this is still relevant. \ No newline at end of file