ci: allow manual build runs via workflow_dispatch#57
Merged
Conversation
Add a workflow_dispatch trigger to the CI build workflow so builds can be launched manually from the GitHub Actions tab, matching the manual trigger support already present in deploy-one.yml and update-velt-versions.yml. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Pull Request
Description
Adds a
workflow_dispatchtrigger to the CI build workflow (.github/workflows/ci.yml) so builds can be launched manually from the GitHub Actions tab, rather than only onpush/pull_request. This matches the manual-trigger support already present indeploy-one.ymlandupdate-velt-versions.yml. No job or step changes — the existing lint + build steps run as-is on a manual run.Type of Change
Testing
Additional Context
On a manual run, the existing "Commit and push lint fixes" step still pushes any lint fixes to the dispatched branch (already guarded with
continue-on-error), matching current push behavior.Note
Low Risk
Single trigger addition with no workflow logic changes; manual runs behave like existing push-triggered CI.
Overview
The CI workflow (
.github/workflows/ci.yml) can now be started from the Actions tab viaworkflow_dispatch, in addition topushandpull_request. This aligns CI with other workflows that already support manual runs.No jobs or steps were changed—the same lint-with-auto-fix and build pipeline runs on a manual dispatch.
Reviewed by Cursor Bugbot for commit 9b8ee2a. Bugbot is set up for automated code reviews on this repo. Configure here.