You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/close-stale.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
name: 'Close stale issues and PRs'
2
2
on:
3
3
schedule:
4
-
- cron: '*/10 * * * *'
4
+
- cron: '0 * * * *'
5
5
6
6
permissions:
7
7
issues: write # to close stale issues (actions/stale)
@@ -12,7 +12,7 @@ jobs:
12
12
name: 'Close month old issues and PRs'
13
13
runs-on: ubuntu-latest
14
14
steps:
15
-
- uses: actions/stale@v7
15
+
- uses: actions/stale@v8
16
16
with:
17
17
start-date: '2022-01-01T00:00:00Z'
18
18
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 30 days.'
@@ -32,7 +32,7 @@ jobs:
32
32
name: 'Close year old issues and PRs'
33
33
runs-on: ubuntu-latest
34
34
steps:
35
-
- uses: actions/stale@v7
35
+
- uses: actions/stale@v8
36
36
with:
37
37
stale-issue-message: 'This issue is stale because it has been open for 1 year with no activity. Remove stale label or comment or this will be closed in 30 days.'
38
38
stale-pr-message: 'This PR is stale because it has been open 1 year with no activity. Remove stale label or comment or this will be closed in 30 days.'
comment: Please note this issue tracker is not a help forum. We recommend using [StackOverflow](https://stackoverflow.com/questions/tagged/jestjs) or our [discord channel](https://discord.gg/j6FKKQQrW9) for questions.
run: gh issue close $ISSUE --comment "Please note this issue tracker is not a help forum. We recommend using [StackOverflow](https://stackoverflow.com/questions/tagged/jestjs) or our [discord channel](https://discord.gg/j6FKKQQrW9) for questions."
comment: As noted in the [Bug Report template](https://github.com/facebook/jest/blob/main/.github/ISSUE_TEMPLATE/bug.yml), all bug reports requires a minimal reproduction. Please open up a new issue providing one. Read more at https://stackoverflow.com/help/minimal-reproducible-example.
run: gh issue close $ISSUE --comment "As noted in the [Bug Report template](https://github.com/jestjs/jest/blob/main/.github/ISSUE_TEMPLATE/bug.yml), all bug reports requires a minimal reproduction. Please open up a new issue providing one. Read more at https://stackoverflow.com/help/minimal-reproducible-example."
0 commit comments