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
Adds an optional skip_ci input (default true = current behavior) so nightly common bumps can omit [skip actions] and trigger a build/tag. Backward-compatible: no existing caller changes behavior. Nightly workflows opt in via separate PRs.
Medium Risk
Changes shared CI commit behavior used by many repos; default true limits blast radius, but skip_ci: false will trigger push pipelines and integration deploys when nightly workflows opt in.
Overview
Adds an optional skip_ci input (default true) to the shared php-common-bump reusable workflow so bump commits only append [skip actions] when callers want to suppress CI. The commit step now reads skip_ci and commit_message via env and builds the message suffix conditionally instead of always skipping workflows.
This unblocks DEVEX-1628: nightly common-update jobs can opt in with skip_ci: false in follow-up PRs so revolutionparts/common bumps on main trigger build/tag (and integration deploy where applicable). Existing callers (merge-path upgrade-common, daemons, batch, etc.) keep today’s behavior without changes.
Also adds design and implementation docs under docs/superpowers/ describing the nightly opt-in rollout across 11 service repos.
Reviewed by Cursor Bugbot for commit 4dc932c. Bugbot is set up for automated code reviews on this repo. Configure here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds an optional skip_ci input (default true = current behavior) so nightly common bumps can omit [skip actions] and trigger a build/tag. Backward-compatible: no existing caller changes behavior. Nightly workflows opt in via separate PRs.
Refs DEVEX-1628