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.
2 parents 3c3e279 + 545e712 commit 088329eCopy full SHA for 088329e
1 file changed
.github/workflows/auto-close-stale-prs.yml
@@ -18,11 +18,11 @@ jobs:
18
runs-on: ubuntu-latest
19
timeout-minutes: 10
20
steps:
21
- - name: Close pull requests inactive for more than 30 days
+ - name: Close pull requests inactive for more than 14 days
22
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
23
with:
24
script: |
25
- const STALE_DAYS = 30;
+ const STALE_DAYS = 14;
26
const staleThresholdMs = STALE_DAYS * 24 * 60 * 60 * 1000;
27
const now = Date.now();
28
const { owner, repo } = context.repo;
0 commit comments