Skip to content

Commit 1dd31d3

Browse files
authored
stale check react-file-based-routes issue1064 (#3)
1 parent b877c19 commit 1dd31d3

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/cron.stale.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Stale
2+
on:
3+
schedule:
4+
- cron: '37 * * * *'
5+
permissions:
6+
issues: write
7+
pull-requests: write
8+
jobs:
9+
stale:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/stale@v9
13+
with:
14+
days-before-pr-stale: 7
15+
days-before-issue-stale: 7
16+
close-pr-message: "Due to lack of activity this has been closed for now. Feel free to reopen once you are back."
17+
include-only-assigned: true
18+
days-before-issue-close: 21
19+
stale-issue-message: "Due to inactivity you will be unassigned soon and the issue be freed."
20+
exempt-issue-labels: "shoutout"
21+
remove-assignee:
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: Unassign contributor after days of inactivity
25+
uses: BoundfoxStudios/[email protected]
26+
with:
27+
last-activity: 14

0 commit comments

Comments
 (0)