Skip to content

Commit 3c8b45d

Browse files
authored
Added "Close Stale Issues" GitHub Action (#406)
Signed-off-by: Helber Belmiro <[email protected]>
1 parent b551444 commit 3c8b45d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/stale_issues.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Close stale issues and PRs
2+
on:
3+
schedule:
4+
- cron: '0 12 * * *'
5+
6+
permissions:
7+
issues: write
8+
pull-requests: write
9+
10+
jobs:
11+
stale:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/[email protected]
15+
with:
16+
exempt-issue-labels: 'pinned'

0 commit comments

Comments
 (0)