We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4af008d commit a8462faCopy full SHA for a8462fa
1 file changed
.github/workflows/stale.yml
@@ -0,0 +1,19 @@
1
+name: Manage stale PRs
2
+
3
+on:
4
+ schedule:
5
+ - cron: "30 0 * * *" # will be triggered daily at 00:30 UTC.
6
+permissions: {}
7
+jobs:
8
+ stale-prs:
9
+ permissions:
10
+ actions: write
11
+ contents: write
12
+ issues: write
13
+ pull-requests: write
14
+ uses: smartcontractkit/.github/.github/workflows/reusable-stale-prs-issues.yml@de0ec7feedae310c287330a2bb2b9e61db035114 # 2025-06-05
15
+ with:
16
+ days-before-pr-stale: 30 # days
17
+ days-before-pr-close: 7 # days
18
+ secrets:
19
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments