From b04d8c9ae3b490f2ec77453815859bdb0d73afda Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 2 Apr 2026 11:16:07 +0000 Subject: [PATCH 1/2] no changes yet Agent-Logs-Url: https://github.com/github/gh-aw/sessions/774c0c55-1026-459e-9214-744278987550 Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .github/workflows/slide-deck-maintainer.lock.yml | 2 +- .github/workflows/stale-repo-identifier.lock.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 }} From 56685945a8a4afcbe1b918d948b5f17eca04742a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 2 Apr 2026 11:16:39 +0000 Subject: [PATCH 2/2] Set max branch limit to 10 and enable deletion on scheduled runs Agent-Logs-Url: https://github.com/github/gh-aw/sessions/774c0c55-1026-459e-9214-744278987550 Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .github/workflows/copilot-maintenance.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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"