diff options
| author | Dax Raad <[email protected]> | 2026-03-24 23:38:04 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2026-03-24 23:38:15 -0400 |
| commit | 958a80cc052b9b342dfa2a92c0a4caf1c4418fa9 (patch) | |
| tree | 4cf115ac182ccec4308dfe2a850ef6cd00a20d96 | |
| parent | 4647aa80ac57f2ec4759afcb7274c566dcfad960 (diff) | |
| download | opencode-958a80cc052b9b342dfa2a92c0a4caf1c4418fa9.tar.gz opencode-958a80cc052b9b342dfa2a92c0a4caf1c4418fa9.zip | |
fix: increase operations-per-run to 1000 and pin stale action to v10.2.0
The stale-issues workflow was hitting the default 30 operations limit,
preventing it from processing all 2900+ issues/PRs. Increased to 1000
to handle the full backlog. Also pinned to exact v10.2.0 for reproducibility.
| -rw-r--r-- | .github/workflows/stale-issues.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/stale-issues.yml b/.github/workflows/stale-issues.yml index a4b8583f9..c26528120 100644 --- a/.github/workflows/stale-issues.yml +++ b/.github/workflows/stale-issues.yml @@ -15,8 +15,9 @@ jobs: permissions: issues: write steps: - - uses: actions/stale@v10 + - uses: actions/[email protected] with: + operations-per-run: 1000 days-before-stale: ${{ env.DAYS_BEFORE_STALE }} days-before-close: ${{ env.DAYS_BEFORE_CLOSE }} stale-issue-label: "stale" |
