Skip to content

Commit c4eca7f

Browse files
authored
Update user authentication logic (vocodedev#492)
fix 491
1 parent 9b03de2 commit c4eca7f

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/stale.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "Close stale issues"
2+
3+
on:
4+
schedule:
5+
- cron: "30 1 * * *"
6+
7+
permissions:
8+
contents: write
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+
repo-token: ${{ secrets.GITHUB_TOKEN }}
19+
days-before-stale: 60
20+
days-before-close: 7
21+
stale-issue-label: 'stale'
22+
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
23+
close-issue-message: 'This issue has been automatically closed due to inactivity. Thank you for your contributions.'
24+
stale-pr-label: 'stale'
25+
stale-pr-message: 'This PR has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
26+
close-pr-message: 'This PR has been automatically closed due to inactivity. Thank you for your contributions.'
27+
exempt-all-pr-milestones: true
28+
enable-statistics: true

0 commit comments

Comments
 (0)