Allow manual dispatch of CI workflows - #234
Merged
Merged
Conversation
Add a workflow_dispatch trigger to the tests and linters workflows so they can be started manually for a given ref, in addition to the push and pull_request triggers.
There was a problem hiding this comment.
Pull request overview
Adds workflow_dispatch triggers to existing CI workflows so maintainers can manually run tests/linters against a selected ref (branch/tag) in addition to the existing push and pull_request triggers.
Changes:
- Enable manual runs for the
testsworkflow viaworkflow_dispatch. - Enable manual runs for the
lintersworkflow viaworkflow_dispatch.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/tests.yml | Adds workflow_dispatch under on: to allow manual triggering of the test suite workflow. |
| .github/workflows/linters.yml | Adds workflow_dispatch under on: to allow manual triggering of the linters workflow. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Build the tests and linters workflows when a semver tag is pushed (X.Y.Z with an optional -prerelease suffix, e.g. 3.8.0 or 1.2.3-rc.1), so release tags produce artifacts without a separate branch push.
thejcfactor
approved these changes
Jun 29, 2026
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.
Add a workflow_dispatch trigger to the tests and linters workflows so they can be started manually for a given ref, in addition to the push and pull_request triggers.