diff --git a/.github/workflows/auto-close_stale_issues_and_pull-requests.yml b/.github/workflows/auto-close_stale_issues_and_pull-requests.yml index 98c7f8e2c9..db67d17f45 100644 --- a/.github/workflows/auto-close_stale_issues_and_pull-requests.yml +++ b/.github/workflows/auto-close_stale_issues_and_pull-requests.yml @@ -26,7 +26,8 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-issue-stale: 90 - days-before-close: 20 + days-before-issue-close: 20 + days-before-pr-stale: -1 operations-per-run: 100 # max num of ops per run stale-issue-label: 'Status: Stale' close-issue-label: 'Status: Auto-closing' @@ -51,7 +52,8 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-issue-stale: 20 - days-before-close: 20 + days-before-issue-close: 20 + days-before-pr-stale: -1 operations-per-run: 30 # max num of ops per run stale-issue-label: 'Status: Stale' close-issue-label: 'Status: Auto-closing' @@ -76,7 +78,8 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-issue-stale: 190 - days-before-close: 60 + days-before-issue-close: 60 + days-before-pr-stale: -1 operations-per-run: 30 # max num of ops per run stale-issue-label: 'Status: Stale' close-issue-label: 'Status: Auto-closing' @@ -104,7 +107,8 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-pr-stale: 150 - days-before-close: 90 + days-before-pr-close: 90 + days-before-issue-stale: -1 operations-per-run: 30 # max num of ops per run stale-pr-label: 'Status: Stale' close-pr-label: 'Status: Auto-closing'