From 0ac0373a2f422efc3956b509edd14e37a536db27 Mon Sep 17 00:00:00 2001 From: Mara Nikola Kiefer Date: Tue, 24 Feb 2026 08:49:49 +0100 Subject: [PATCH] chore: add concurrency and run name configuration to rollout workflow --- docs/src/content/docs/patterns/central-repo-ops.mdx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/src/content/docs/patterns/central-repo-ops.mdx b/docs/src/content/docs/patterns/central-repo-ops.mdx index 15e3910f4df..bd66fe3e606 100644 --- a/docs/src/content/docs/patterns/central-repo-ops.mdx +++ b/docs/src/content/docs/patterns/central-repo-ops.mdx @@ -99,12 +99,23 @@ on: required: true type: string +run-name: Dependabot rollout for ${{ github.event.inputs.target_repo }} + +concurrency: + group: gh-aw-${{ github.workflow }}-${{ github.event.inputs.target_repo }} + +engine: + id: copilot + concurrency: + group: gh-aw-copilot-${{ github.workflow }}-${{ github.event.inputs.target_repo }} + steps: - name: Checkout target repository uses: actions/checkout@v5 with: token: ${{ secrets.ORG_REPO_CHECKOUT_TOKEN }} repository: ${{ github.event.inputs.target_repo }} + persist-credentials: false permissions: contents: read