Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/src/content/docs/patterns/central-repo-ops.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link

Copilot AI Feb 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The addition of persist-credentials: false is not mentioned in the PR title or description, which only references adding concurrency and run name configuration. While setting persist-credentials: false is a security best practice when using a custom token (to prevent the token from being persisted in the Git config), this change should be documented in the PR description to ensure it's an intentional modification rather than an accidental inclusion.

Copilot uses AI. Check for mistakes.

permissions:
contents: read
Expand Down