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
2 changes: 2 additions & 0 deletions .github/workflows/repo-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
steps:
- name: Check out repo
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
persist-credentials: false
Copy link

Copilot AI Dec 2, 2025

Choose a reason for hiding this comment

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

[nitpick] For consistency with the existing usage in .github/workflows/check-broken-links-github-github.yml (line 30), consider using the string 'false' instead of the boolean false for the persist-credentials parameter.

While both values are functionally equivalent in GitHub Actions YAML, maintaining consistency across the codebase makes the patterns easier to follow.

Suggested change
persist-credentials: false
persist-credentials: 'false'

Copilot uses AI. Check for mistakes.

- name: Sync repo to branch
uses: repo-sync/github-sync@3832fe8e2be32372e1b3970bbae8e7079edeec88
Expand Down
Loading