diff options
| author | Jacob Slusser <jacobslusser@hotmail.com> | 2023-10-21 12:03:21 -0700 |
|---|---|---|
| committer | Jacob Slusser <jacobslusser@hotmail.com> | 2023-10-21 12:03:21 -0700 |
| commit | 181601a1e58e5ac302583f4b10ac0e056351401c (patch) | |
| tree | 107ca638e91ea8663dbfb0a0218640e8cd527490 | |
| parent | df7032b09e720cf07169514433557edf22922d0c (diff) | |
#10333 Increases operations per run to work around no cache state between runs
| -rw-r--r-- | .github/workflows/repo-stale.yaml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/repo-stale.yaml b/.github/workflows/repo-stale.yaml index 2b1164116..e0789ea58 100644 --- a/.github/workflows/repo-stale.yaml +++ b/.github/workflows/repo-stale.yaml @@ -2,7 +2,7 @@ name: Stale Check on: schedule: - - cron: '30 */12 * * *' + - cron: '30 1 * * *' workflow_dispatch: permissions: @@ -19,11 +19,12 @@ jobs: - uses: actions/stale@1160a2240286f5da8ec72b1c0816ce2481aabf84 # v8.0.0 with: repo-token: ${{ secrets.JF_BOT_TOKEN }} + ascending: true days-before-stale: 120 days-before-pr-stale: -1 days-before-close: 21 days-before-pr-close: -1 - operations-per-run: 75 + operations-per-run: 500 exempt-issue-labels: regression,security,roadmap,future,feature,enhancement,confirmed stale-issue-label: stale stale-issue-message: |- |
