From 1a3deeb37e014b5edff9a23d782dd823e40a707c Mon Sep 17 00:00:00 2001 From: Gosuke Miyashita Date: Fri, 25 Apr 2025 06:58:40 +0900 Subject: [PATCH] Add stale workflow --- .github/workflows/stale.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/stale.yaml diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml new file mode 100644 index 00000000..999924fa --- /dev/null +++ b/.github/workflows/stale.yaml @@ -0,0 +1,16 @@ +name: 'Close stale issues and PR' +on: + workflow_dispatch: + schedule: + - cron: '30 1 * * *' + +permissions: + contents: write + issues: write + pull-requests: write + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v8