Skip to content

Commit ec76f09

Browse files
authored
chore: add concurrency and run name configuration to rollout workflow (#18096)
1 parent acc75c2 commit ec76f09

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

docs/src/content/docs/patterns/central-repo-ops.mdx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,23 @@ on:
9999
required: true
100100
type: string
101101

102+
run-name: Dependabot rollout for ${{ github.event.inputs.target_repo }}
103+
104+
concurrency:
105+
group: gh-aw-${{ github.workflow }}-${{ github.event.inputs.target_repo }}
106+
107+
engine:
108+
id: copilot
109+
concurrency:
110+
group: gh-aw-copilot-${{ github.workflow }}-${{ github.event.inputs.target_repo }}
111+
102112
steps:
103113
- name: Checkout target repository
104114
uses: actions/checkout@v5
105115
with:
106116
token: ${{ secrets.ORG_REPO_CHECKOUT_TOKEN }}
107117
repository: ${{ github.event.inputs.target_repo }}
118+
persist-credentials: false
108119

109120
permissions:
110121
contents: read

0 commit comments

Comments
 (0)