-
Notifications
You must be signed in to change notification settings - Fork 1
Chore: [AEA-0000] - fix param names #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,8 +1,8 @@ | ||||||
| name: Sync Copilot Instructions | ||||||
| description: "Syncs Copilot instructions from the repository to the GitHub Action's metadata file." | ||||||
| inputs: | ||||||
| common_workflows_ref: | ||||||
| description: "The ref to sync from the central repository" | ||||||
| copilot_instructions_ref: | ||||||
| description: "The ref to sync from the eps_copilot_instructions repository" | ||||||
|
||||||
| description: "The ref to sync from the eps_copilot_instructions repository" | |
| description: "The ref to sync from the NHSDigital/eps-copilot-instructions repository" |
Copilot
AI
Mar 30, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR renames the public action input from common_workflows_ref to copilot_instructions_ref, which is a breaking change for any callers using the old input name. Consider supporting common_workflows_ref as a deprecated alias (or documenting a required major version/tag bump) to avoid unexpected failures for existing users.
Copilot
AI
Mar 30, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The action still references ${{ inputs.common_workflows_ref }} later in this file (in the create-pull-request body), but that input was renamed to copilot_instructions_ref. Update the remaining reference to the new input name so the PR body shows the correct ref (and to avoid referencing an undefined input).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Step 2 description is inaccurate:
copilot_instructions_refis an input (a git ref), not a repository. Reword this to say the action checks outNHSDigital/eps-copilot-instructionsatcopilot_instructions_ref(or similar) so readers understand what is being checked out.