You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: always overwrite workflow files on init so upgrades take effect
The scaffolder used writeIfNotExists for CI workflow files, which meant
re-running `apx init canonical` on an existing repo would silently keep
stale workflows (e.g. the old commit-based on-merge instead of the new
Docker build/push/attest flow). Workflow files are APX-managed templates,
not user-customized files, so they should always be overwritten.
Removes the writeIfNotExists helper entirely — apx.yaml is the only
file that still uses a skip-if-exists guard (it contains user config).
0 commit comments