Skip to content

Commit 11cc3f1

Browse files
authored
Add GitHub Actions workflow for stale issue and PR management (#37)
Introduce a GitHub Actions workflow to automatically manage stale issues and pull requests, including scheduled comments for inactivity.
1 parent 85ef3ed commit 11cc3f1

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
structure:
2+
- .github/workflows/stale.yaml:
3+
content: |
4+
name: 'stale'
5+
on:
6+
schedule:
7+
- cron: '30 1 * * *'
8+
9+
jobs:
10+
stale:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/stale@{{@ "actions/stale" | latest_release @}}
14+
with:
15+
stale-issue-message: 'Message to comment on stale issues. If none provided, will not mark issues stale'
16+
stale-pr-message: 'Message to comment on stale PRs. If none provided, will not mark PRs stale'

0 commit comments

Comments
 (0)