diff options
author | vaxerski <[email protected]> | 2024-01-01 18:37:49 +0100 |
---|---|---|
committer | vaxerski <[email protected]> | 2024-01-01 18:37:49 +0100 |
commit | 46753b1f22478c64222e5d9f7e0fb4c10b001be6 (patch) | |
tree | a92951d8cdd488eeec5dcad7f8dae94287bbf3f9 /.github | |
parent | d4e68ab60216596867d6ee08b1e96ff0eeaec80e (diff) | |
download | Hyprland-46753b1f22478c64222e5d9f7e0fb4c10b001be6.tar.gz Hyprland-46753b1f22478c64222e5d9f7e0fb4c10b001be6.zip |
CI: limit stalebot ops per run
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/stale.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 223186b5..8955517f 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -7,7 +7,7 @@ name: Mark stale issues and pull requests on: schedule: - - cron: '26 0 * * *' + - cron: '7 */4 * * *' workflow_dispatch: jobs: @@ -24,3 +24,4 @@ jobs: repo-token: ${{ secrets.STALEBOT_PAT }} stale-issue-label: 'stale' stale-pr-label: 'stale' + operations-per-run: 40 |