Skip to content

Commit e1c19fa

Browse files
authored
fix: add stale.yml workflow (#12)
Signed-off-by: fOuttaMyPaint <TMhospitalitystrategies@gmail.com>
1 parent c82f33e commit e1c19fa

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/stale.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Stale
2+
3+
on:
4+
schedule:
5+
- cron: "0 6 * * 1"
6+
workflow_dispatch:
7+
8+
permissions:
9+
issues: write
10+
pull-requests: write
11+
12+
jobs:
13+
stale:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/stale@v9
17+
with:
18+
stale-issue-message: "This issue has been automatically marked as stale due to inactivity. It will be closed in 7 days if no further activity occurs."
19+
stale-pr-message: "This PR has been automatically marked as stale due to inactivity. It will be closed in 7 days if no further activity occurs."
20+
days-before-stale: 30
21+
days-before-close: 7
22+
stale-issue-label: stale
23+
stale-pr-label: stale

0 commit comments

Comments
 (0)