We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16a7bac commit fe0f7b5Copy full SHA for fe0f7b5
.github/workflows/nightly.yml
@@ -0,0 +1,23 @@
1
+name: Nightly routine
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 0 * * *'
6
7
+permissions:
8
+ issues: write
9
+ pull-requests: write
10
11
+jobs:
12
+ close-stale-prs:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/stale@v9
16
+ with:
17
+ stale-pr-message: 'This pull request is stale for 2 weeks and is going to be closed'
18
+ days-before-pr-stale: 14
19
+ days-before-issue-stale: -1
20
+ days-before-pr-close: 14
21
+ days-before-issue-close: -1
22
+ stale-pr-label: 'stale'
23
+ operations-per-run: 100
0 commit comments