We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c07741b commit a98f0ccCopy full SHA for a98f0cc
.github/workflows/stale.yml
@@ -0,0 +1,25 @@
1
+name: 'Close stale issues and PRs'
2
+
3
+on:
4
+ workflow_dispatch:
5
+ schedule:
6
+ - cron: '* 4 * * *'
7
8
+jobs:
9
+ stale:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout repository
14
+ uses: actions/checkout@v4
15
16
+ - name: Checkout script repository
17
18
+ with:
19
+ repository: Seeed-Studio/sync-github-all-issues
20
+ path: ci
21
22
+ - name: Run script
23
+ run: ./ci/tools/stale.sh
24
+ env:
25
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments