Add automated release workflow & fix failing tests#113
Merged
Conversation
- Releases are now gated by the version string in pantheon.php - If version ends in -dev, pushes to main are no-ops - If version has no -dev suffix, the workflow tags, publishes a GitHub Release with auto-generated notes, then opens an auto-merging PR to bump to the next patch -dev version - Add PR template with release reminder table - Update CONTRIBUTING.md to document the new process - Bump version to 1.5.7-dev (last released was 1.5.6)
Contributor
Up to standards ✅🟢 Issues
|
| Metric | Results |
|---|---|
| Duplication | 0 |
NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes.
pwtyler
commented
Apr 24, 2026
Co-authored-by: Phil Tyler <philip@tylerdigital.com>
pwtyler
commented
Apr 24, 2026
pwtyler
commented
Apr 24, 2026
pwtyler
commented
Apr 24, 2026
jazzsequence
approved these changes
Apr 28, 2026
greg-1-anderson
approved these changes
Apr 28, 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.
Description
Implements automated release gating via GitHub Actions. The version string in
pantheon.phpcontrols whether a push tomaintriggers a release.-dev→ no-op, normal development state-devsuffix → workflow tags, publishes a GitHub Release with auto-generated notes, then opens an auto-merging PR bumping to the next patch-devChanges
pantheon.php: Bumped to1.5.7-dev(last manually released version was1.5.6).github/workflows/release.yml: New release workflow using the nativeghCLI (no third-party release action), SHA-pinned checkout.github/workflows/test.yml: Remove scheduled (daily) trigger — tests run on push only.github/PULL_REQUEST_TEMPLATE.md: New PR template with release reminder tableCONTRIBUTING.md: Replaces manual release process docs with automated process docsHow the release gate works
pantheon.phpmainX.Y.Z-devX.Y.Z(patch)X.Y.Z+1-devPRX.Y.0(minor)X.Y.1-devPRThe version bump is opened as a PR with auto-merge enabled. Since there are no required status checks on
main, it merges immediately.Notes
GITHUB_TOKENthroughout — no PAT requiredlint.yml:bot@getpantheon.com/Pantheon Robot