MCPcopy Create free account
hub / github.com/github/gh-aw / ensureCopilotSetupSteps

Function ensureCopilotSetupSteps

pkg/cli/copilot_setup.go:161–163  ·  view source on GitHub ↗

ensureCopilotSetupSteps creates or updates .github/workflows/copilot-setup-steps.yml

(ctx context.Context, verbose bool, actionMode workflow.ActionMode, version string)

Source from the content-addressed store, hash-verified

159
160// ensureCopilotSetupSteps creates or updates .github/workflows/copilot-setup-steps.yml
161func 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
166func upgradeCopilotSetupSteps(ctx context.Context, verbose bool, actionMode workflow.ActionMode, version string) error {

Calls 1