ci: pull upstream's fixed freeze.yml (broken YAML on stable)#156
Merged
Conversation
freeze.yml synced from upstream in a broken state: line 68's `run: echo "...override: code freeze..."` makes YAML read the colon as a mapping key, so the workflow fails to parse and reports a failed run on every push to shorebird/dev. We never modified the file. Replace it with upstream flutter/flutter's current version, which fixed the issue (dropped the colon-bearing label + the offending steps). Still gated to `github.repository == 'flutter/flutter'`, so it remains a no-op on our fork -- this just stops the per-push red and keeps the file aligned with upstream (no sync conflict).
bdero
approved these changes
Jun 2, 2026
mrnpro
pushed a commit
to Flutter-Code-Push/flutter
that referenced
this pull request
Jun 16, 2026
…rebirdtech#156) freeze.yml synced from upstream in a broken state: line 68's `run: echo "...override: code freeze..."` makes YAML read the colon as a mapping key, so the workflow fails to parse and reports a failed run on every push to shorebird/dev. We never modified the file. Replace it with upstream flutter/flutter's current version, which fixed the issue (dropped the colon-bearing label + the offending steps). Still gated to `github.repository == 'flutter/flutter'`, so it remains a no-op on our fork -- this just stops the per-push red and keeps the file aligned with upstream (no sync conflict).
bdero
pushed a commit
that referenced
this pull request
Jun 22, 2026
freeze.yml synced from upstream in a broken state: line 68's `run: echo "...override: code freeze..."` makes YAML read the colon as a mapping key, so the workflow fails to parse and reports a failed run on every push to shorebird/dev. We never modified the file. Replace it with upstream flutter/flutter's current version, which fixed the issue (dropped the colon-bearing label + the offending steps). Still gated to `github.repository == 'flutter/flutter'`, so it remains a no-op on our fork -- this just stops the per-push red and keeps the file aligned with upstream (no sync conflict).
bdero
pushed a commit
that referenced
this pull request
Jun 25, 2026
freeze.yml synced from upstream in a broken state: line 68's `run: echo "...override: code freeze..."` makes YAML read the colon as a mapping key, so the workflow fails to parse and reports a failed run on every push to shorebird/dev. We never modified the file. Replace it with upstream flutter/flutter's current version, which fixed the issue (dropped the colon-bearing label + the offending steps). Still gated to `github.repository == 'flutter/flutter'`, so it remains a no-op on our fork -- this just stops the per-push red and keeps the file aligned with upstream (no sync conflict).
bdero
pushed a commit
that referenced
this pull request
Jul 7, 2026
freeze.yml synced from upstream in a broken state: line 68's `run: echo "...override: code freeze..."` makes YAML read the colon as a mapping key, so the workflow fails to parse and reports a failed run on every push to shorebird/dev. We never modified the file. Replace it with upstream flutter/flutter's current version, which fixed the issue (dropped the colon-bearing label + the offending steps). Still gated to `github.repository == 'flutter/flutter'`, so it remains a no-op on our fork -- this just stops the per-push red and keeps the file aligned with upstream (no sync conflict).
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.
What
Replace
.github/workflows/freeze.ymlwith upstream flutter/flutter's current version.Why
The copy synced into
shorebird/devis broken YAML: line 68'srun: echo "...override: code freeze..."makes the parser read the:as a mapping key (mapping values are not allowed here, line 68 col 54). As a result the workflow fails to parse and reports a failed run on every push toshorebird/dev(visible 06-01, 06-02, …) — including on unrelated PRs.We never modified this file (it's upstream-owned). Upstream has since fixed it (dropped the colon-bearing label + the offending steps). Pulling their current version:
It remains gated to
github.repository == 'flutter/flutter', so it's still a no-op on our fork — this is purely fixing the parse failure.Verified:
python -c 'yaml.safe_load(...)'passes on the new file. Unrelated to (but unblocks the CI noise on) the dart-sdk consumption PR #155.