ensureCopilotSetupSteps creates or updates .github/workflows/copilot-setup-steps.yml
(ctx context.Context, verbose bool, actionMode workflow.ActionMode, version string)
| 159 | |
| 160 | // ensureCopilotSetupSteps creates or updates .github/workflows/copilot-setup-steps.yml |
| 161 | func ensureCopilotSetupSteps(ctx context.Context, verbose bool, actionMode workflow.ActionMode, version string) error { |
| 162 | return ensureCopilotSetupStepsWithUpgrade(ctx, verbose, actionMode, version, false) |
| 163 | } |
| 164 | |
| 165 | // upgradeCopilotSetupSteps upgrades the version in existing copilot-setup-steps.yml |
| 166 | func upgradeCopilotSetupSteps(ctx context.Context, verbose bool, actionMode workflow.ActionMode, version string) error { |