Move the checks onto the shared umbrella and build the other dev branch weekly [ignore_release] - #146
Merged
Merged
Conversation
The callers this replaces were already thin wrappers around the same shared workflows, so one caller means a check added centrally reaches this plugin without a pull request here. It also drops the concurrency group the checklist workflow carried, which would span both of the umbrella's lanes and defeat them.
GitHub runs `schedule` only from the default branch's copy of a workflow, so the other maintained branch has had no weekly build of its own. The cron keeps this plugin's own minute and hour, moved to Sunday, so the fleet stays staggered.
AltamashShaikh
approved these changes
Sep 11, 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
Separate commits so any part can be reverted on its own.
The pull request checks move behind the shared umbrella. The workflows this replaces were already thin callers of the same shared workflows, so what changes is that one caller invokes them rather than several — a check added centrally now reaches this plugin without a pull request here. It also drops the
concurrencygroup the AI checklist workflow carried, which spans both of the umbrella's lanes and silently defeats them.Opted out where the check does not apply here:
skip-phpstan. Each carries its reason inline.The non-default dev branch gets a weekly build. GitHub only runs a
scheduletrigger from the default branch's copy of a workflow file, so when the default moved the other line stopped being built and nothing said so. The sweep dispatches this plugin's ownmatomo-tests.ymlthere using this repository's own token —workflow_dispatchis a documented exception to the rule that GITHUB_TOKEN-triggered events create no workflow run, so no PAT is involved. The cron is0 3 * * 0: this plugin's own minute and hour, moved to Sunday, so it does not compete with the Saturday build and the fleet keeps its stagger.Verified live on matomo-org/plugin-LogViewer and innocraft/plugin-UsersFlow: a manual dispatch resolved the default branch, dispatched the build on the other one, and that build completed green attributed to that branch — which is what the plugin build dashboard's per-branch badges read.
Issue No
No GitHub issue.
Steps to Replicate the Issue
matomo-tests.ymlcron only ever fires on the default branch.Checklist