We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8938054 commit eb7a0dfCopy full SHA for eb7a0df
.github/stale.yml
.github/workflows/stale.yml
@@ -0,0 +1,19 @@
1
+name: 'Comment on stale issues and PRs'
2
+on:
3
+ schedule:
4
+ - cron: '30 1 * * *'
5
+
6
+jobs:
7
+ stale:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/stale@v9
11
+ with:
12
+ stale-issue-message: 'This issue is stale because it has been open 60 days with no activity.'
13
+ stale-pr-message: 'This PR is stale because it has been open 60 days with no activity.'
14
+ close-issue-message: 'This issue was closed because it has been stalled for too long with no activity.'
15
+ close-pr-message: 'This PR was closed because it has been stalled for too long with no activity.'
16
+ days-before-issue-stale: 60
17
+ days-before-pr-stale: 60
18
+ days-before-issue-close: -1
19
+ days-before-pr-close: -1
0 commit comments