Conversation
Kallyan01
marked this pull request as ready for review
August 11, 2026 14:19
Kallyan01
force-pushed
the
feat/gh-flow-release
branch
2 times, most recently
from
August 11, 2026 18:21
3f36688 to
4db0659
Compare
…v.override.json file
…pot and make-json
Kallyan01
force-pushed
the
feat/gh-flow-release
branch
from
August 16, 2026 20:55
5147c9d to
b90a2c8
Compare
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.
Summary
Overhaul the CI/CD workflows: split the monolithic test pipeline into modular, change-detecting reusable workflows, and add Conventional-Commit PR title validation + release-please automation.
Changes
ci.yml(new): main pipeline entry point. Detects which files changed (PHP, JS, CSS, PHPCS/PHPStan/PHPUnit/Jest/E2E-relevant paths) and fans out only the reusable workflows that apply, instead of always running everything.reusable-phpcs.yml,reusable-phpstan.yml,reusable-phpunit.yml,reusable-lint-css-js.yml(ESLint/Stylelint/Prettier/tsc),reusable-jest.yml,reusable-e2e.yml(Playwright),reusable-build.yml(build zip),reusable-wp-playground-pr-preview.yml(PR preview environment via wp-playground).test.yml, superseded by the above.pr-title.yml(new): validates PR titles against Conventional Commits format, required for release-please.release.yml: reworked to use release-please for automated versioning/changelog on push tomain; builds the plugin viareusable-build.ymland uploads the zip to the GitHub release.release-please-config.json/.release-please-manifest.json(new): release-please configuration, PHP release type, changelog path, starting version1.1.1.copilot-setup-steps.yml: reformatted/tightened (explicitpermissions: read, clarified trigger comments)..github/workflows/README.md(new): documents what each workflow does and required configuration/secrets.