diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 94d0fd31535..1ad83c54a06 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -1,5 +1,6 @@ name: 'Close stale issues and PRs' on: + workflow_dispatch: schedule: # 00:00:000 UTC - cron: '0 0 * * *' @@ -17,7 +18,10 @@ jobs: # DEV: GitHub Actions have an API rate limit of 1000 operations per hour per repository # This limit is shared across all actions operations-per-run: 200 - days-before-pr-close: 30 + # DEV: Mark PR as stale after 30 days + days-before-pr-stale: 30 + # DEV: Close stale PR after 1 day of no activity + days-before-pr-close: 1 days-before-issue-close: 90 exempt-issue-labels: 'proposal' exempt-pr-labels: 'proposal'