Skip to content

Commit a8462fa

Browse files
authored
Create stale PR workflow (#440)
1 parent 4af008d commit a8462fa

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/stale.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)