{{ message }}
fix: sync-output-repos workflow failing on tag pushes#11016
Merged
Conversation
When a tag push fires (e.g. v7.1.0-alpha.2-ember-cli), github.ref_name already contains the full tag name including the -ember-cli suffix. The old verify-inputs step was blindly appending -ember-cli again, producing the doubled tag v7.1.0-alpha.2-ember-cli-ember-cli. The regex in the scripts only strips one trailing -ember-cli, so the npm version resolved to "7.1.0-alpha.2-ember-cli", which does not exist on the registry. Fix: - Use github.ref_type == 'tag' to detect tag-push runs and use github.ref_name directly (without appending the suffix again). - Narrow push.tags filter from v* to v*-ember-cli so only the ember-cli package tags trigger this workflow. Agent-Logs-Url: https://github.com/ember-cli/ember-cli/sessions/4c5503b9-afaa-4ccd-8a15-f0501be7ea4b Co-authored-by: kategengler <444218+kategengler@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions workflow on tag triggers
fix: sync-output-repos workflow failing on tag pushes
May 2, 2026
Merged
Merged
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.

The
verify-inputsstep was appending-ember-clitogithub.ref_namefor all non-dispatch triggers — but tag names in this repo already include that suffix (e.g.v7.1.0-alpha.2-ember-cli), causing a doubled suffix and a broken npm version lookup.Trace:
Changes
verify-inputsstep: replace the genericgithub.ref_name != ""fallback with an explicitgithub.ref_type == 'tag'branch that usesgithub.ref_namedirectly, without re-appending-ember-cli.push.tagsfilter: narrowed fromv*tov*-ember-cliso the workflow only fires for ember-cli package tags and not for the other per-package tags (e.g.v*-@ember-tooling/*) that share the same repo.Original prompt
This pull request was created from Copilot chat.