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: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ jobs:
with:
dry_run: true
pinned_image: ${{ needs.get_config_values.outputs.pinned_image }}
branch_name: ${{ github.event.pull_request.head.ref }}
branch_name: main
Copy link

Copilot AI Mar 30, 2026

Choose a reason for hiding this comment

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

branch_name is hardcoded to main, which can drift if the workflow’s trigger branches change or if the default branch is renamed. Consider deriving it from the event context (e.g., github.ref_name) so the value always matches the branch the workflow ran on.

Suggested change
branch_name: main
branch_name: ${{ github.ref_name }}

Copilot uses AI. Check for mistakes.
tag_format: ${{ needs.get_config_values.outputs.tag_format }}
secrets: inherit
Loading