This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Commit f4b677e authored and committed Jul 12, 2024
1 parent 3544eb5 commit f4b677e Copy full SHA for f4b677e
File tree 1 file changed +24
-0
lines changed
1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change
1
+ name: Close inactive issues
2
+ on:
3
+ schedule:
4
+ - cron: "30 1 * * *"
5
+
6
+ jobs:
7
+ close-issues:
8
+ runs-on: ubuntu-latest
9
+ permissions:
10
+ issues: write
11
+ pull-requests: write
12
+ steps:
13
+ - uses: actions/stale@v5
14
+ with:
15
+ only-labels: autoclose
16
+ labels-to-remove-when-unstale: autoclose
17
+ days-before-issue-stale: 7
18
+ days-before-issue-close: 7
19
+ stale-issue-label: "stale"
20
+ stale-issue-message: "This issue is stale because it has been open for 7 days with no activity."
21
+ close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale."
22
+ days-before-pr-stale: -1
23
+ days-before-pr-close: -1
24
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments