Fix all failing GitHub Actions workflows#1762
Merged
professoroakz merged 2 commits intoproductionfrom May 1, 2026
Merged
Conversation
- markdown.yml: rewrite as valid workflow (was a bare step list, not a workflow) - dockergithubpackage.yml: actions/checkout@v5 → @v4 (v5 does not exist) - makefile.yml: runs-on: reality-latest → ubuntu-latest (non-existent runner) - npm-publish.yml: gracefully skip publish when NPM_TOKEN secret is not set Agent-Logs-Url: https://github.com/xaoex/reality-simulation-code/sessions/441c2588-e19e-4f21-9a0c-58f9a13747c6 Co-authored-by: professoroakz <6593422+professoroakz@users.noreply.github.com>
Agent-Logs-Url: https://github.com/xaoex/reality-simulation-code/sessions/441c2588-e19e-4f21-9a0c-58f9a13747c6 Co-authored-by: professoroakz <6593422+professoroakz@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
professoroakz
May 1, 2026 02:53
View session
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.
Four workflows were broken and failing on every trigger: one with invalid YAML structure, two with non-existent runner/action references, and one failing hard on a missing secret.
Changes
markdown.yml— File was a bare YAML list (two-line step fragment), not a valid workflow mapping. Replaced with a complete workflow structure (on: issues/workflow_dispatch, properjobs/steps).dockergithubpackage.yml—actions/checkout@v5does not exist; changed to@v4(consistent with every other workflow in the repo).makefile.yml—runs-on: reality-latestis not a valid GitHub-hosted runner. Changed toubuntu-latest; addedpermissions: contents: read.npm-publish.yml—npm publishhard-fails whenNPM_TOKENis not set as a repository secret. Added an inline guard that skips with a warning instead of erroring: