We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acc75c2 commit ec76f09Copy full SHA for ec76f09
docs/src/content/docs/patterns/central-repo-ops.mdx
@@ -99,12 +99,23 @@ on:
99
required: true
100
type: string
101
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
112
steps:
113
- name: Checkout target repository
114
uses: actions/checkout@v5
115
with:
116
token: ${{ secrets.ORG_REPO_CHECKOUT_TOKEN }}
117
repository: ${{ github.event.inputs.target_repo }}
118
+ persist-credentials: false
119
120
permissions:
121
contents: read
0 commit comments