From 386611e6a3edcd837793b6a2ce089a55ab0f754e Mon Sep 17 00:00:00 2001 From: Ben M Date: Thu, 20 Apr 2023 08:26:03 -0400 Subject: [PATCH] chore: update stalebot to respect new labels and up process rate --- .github/workflows/stale_issues_and_pr_cleanup.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/stale_issues_and_pr_cleanup.yml b/.github/workflows/stale_issues_and_pr_cleanup.yml index 0a2ca9e24933..20b4f31b0415 100644 --- a/.github/workflows/stale_issues_and_pr_cleanup.yml +++ b/.github/workflows/stale_issues_and_pr_cleanup.yml @@ -17,11 +17,11 @@ on: exempt-issue-labels: description: 'exempt-issue-labels' required: false - default: 'type: feature,type: enhancement,routed-to-e2e,routed-to-ct,routed-to-tools,routed-to-cloud,Popular Issue' + default: 'type: feature,type: enhancement,routed-to-e2e,routed-to-ct,routed-to-tools,routed-to-cloud,prevent-stale,triaged' exempt-pr-labels: description: 'exempt-pr-labels' required: false - default: 'type: feature,type: enhancement,Popular Issue' + default: 'type: feature,type: enhancement,prevent-stale,triaged' schedule: - cron: '30 1 * * *' permissions: @@ -31,8 +31,8 @@ env: DEFAULT_DEBUG_ONLY: true DEFAULT_DAYS_BEFORE_STALE: 180 DEFAULT_DAYS_BEFORE_CLOSE: 14 - DEFAULT_EXEMPT_ISSUE_LABELS: 'type: feature,type: enhancement,routed-to-e2e,routed-to-ct,routed-to-tools,routed-to-cloud,Popular Issue,prevent-stale' - DEFAULT_EXEMPT_PR_LABELS: 'type: feature,type: enhancement,Popular Issue,prevent-stale' + DEFAULT_EXEMPT_ISSUE_LABELS: 'type: feature,type: enhancement,routed-to-e2e,routed-to-ct,routed-to-tools,routed-to-cloud,prevent-stale,triaged' + DEFAULT_EXEMPT_PR_LABELS: 'type: feature,type: enhancement,prevent-stale,triaged' jobs: stale: runs-on: ubuntu-latest @@ -50,5 +50,5 @@ jobs: exempt-issue-labels: ${{ github.event.inputs.exempt-issue-labels || env.DEFAULT_EXEMPT_ISSUE_LABELS }} exempt-pr-labels: ${{ github.event.inputs.exempt-pr-labels || env.DEFAULT_EXEMPT_PR_LABELS }} exempt-all-milestones: true - operations-per-run: 200 #keeping this a bit higher because it processes newest tickets to oldest + operations-per-run: 400 #keeping this a bit higher because it processes newest tickets to oldest debug-only: ${{ github.event.inputs.debug-only || env.DEFAULT_DEBUG_ONLY }}