Skip to content

Commit 94854d5

Browse files
authored
Merge branch 'master' into fix-sbt-dependency-tree-html-routing
2 parents bd48d80 + ca6ed67 commit 94854d5

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

.github/workflows/stale.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Close Stale Issues
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 * * *"
6+
workflow_dispatch:
7+
8+
permissions: {}
9+
10+
jobs:
11+
stale:
12+
runs-on: ubuntu-latest
13+
permissions:
14+
issues: write
15+
concurrency:
16+
group: stale-issues-workflow
17+
cancel-in-progress: false
18+
19+
steps:
20+
- uses: actions/stale@v10
21+
with:
22+
repo-token: ${{ secrets.GITHUB_TOKEN }}
23+
days-before-issue-stale: 21
24+
days-before-issue-close: 7
25+
stale-issue-message: "This issue has been marked stale because it has had no activity for 21 days. It will be closed in 7 days if no further activity occurs."
26+
close-issue-message: "This issue has been automatically closed because it has had no activity for 7 days since being marked stale."
27+
stale-issue-label: "stale"
28+
29+
# Don't auto-close PRs
30+
days-before-pr-stale: -1
31+
days-before-pr-close: -1

0 commit comments

Comments
 (0)