diff --git a/.github/workflows/copilot-maintenance.yml b/.github/workflows/copilot-maintenance.yml index a6f907d05f6..767c38e876b 100644 --- a/.github/workflows/copilot-maintenance.yml +++ b/.github/workflows/copilot-maintenance.yml @@ -15,7 +15,7 @@ on: description: 'Maximum number of branches to delete' required: false type: number - default: 1 + default: 10 permissions: contents: write @@ -73,16 +73,16 @@ jobs: - name: Run copilot branch cleanup script env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - MAX_BRANCHES: ${{ github.event.inputs.max_branches || '1' }} + MAX_BRANCHES: ${{ github.event.inputs.max_branches || '10' }} run: | echo "Running copilot branch cleanup script..." ./scripts/delete-old-copilot-branches.sh - name: Execute deletion commands - if: github.event.inputs.delete_branches == 'true' + if: github.event.inputs.delete_branches == 'true' || github.event_name == 'schedule' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - MAX_BRANCHES: ${{ github.event.inputs.max_branches || '1' }} + MAX_BRANCHES: ${{ github.event.inputs.max_branches || '10' }} run: | echo "Executing deletion commands..." ./scripts/delete-old-copilot-branches.sh | \ @@ -95,7 +95,7 @@ jobs: echo "✓ Copilot branch cleanup completed" - name: Preview mode notice - if: github.event.inputs.delete_branches != 'true' + if: github.event.inputs.delete_branches != 'true' && github.event_name != 'schedule' run: | echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" echo "⚠️ PREVIEW MODE - No branches were deleted" diff --git a/.github/workflows/slide-deck-maintainer.lock.yml b/.github/workflows/slide-deck-maintainer.lock.yml index 4c321d3dc09..7f6edc70598 100644 --- a/.github/workflows/slide-deck-maintainer.lock.yml +++ b/.github/workflows/slide-deck-maintainer.lock.yml @@ -885,7 +885,7 @@ jobs: issues: write pull-requests: write concurrency: - group: "gh-aw-conclusion-slide-deck-maintainer" + group: "gh-aw-conclusion-slide-deck-maintainer-${{ inputs.focus || github.run_id }}" cancel-in-progress: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} diff --git a/.github/workflows/stale-repo-identifier.lock.yml b/.github/workflows/stale-repo-identifier.lock.yml index d12bee33b44..c2ac4beab7d 100644 --- a/.github/workflows/stale-repo-identifier.lock.yml +++ b/.github/workflows/stale-repo-identifier.lock.yml @@ -899,7 +899,7 @@ jobs: contents: write issues: write concurrency: - group: "gh-aw-conclusion-stale-repo-identifier" + group: "gh-aw-conclusion-stale-repo-identifier-${{ inputs.organization || github.run_id }}" cancel-in-progress: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }}