ci: drop redundant hm run ci GitHub Actions job#145
Merged
Conversation
The GitHub App webhook already runs the `ci` pipeline in Harmont Cloud on every push/PR (the `harmont/harmont-dev-harmont-cli-ci` check). The GHA `hm run ci` job ran that same pipeline a second time — and since `.hm/config.toml` sets `backend = "cloud"`, it required an `HM_API_TOKEN` the workflow never supplied (`actions-hm`'s `token` input is only the GitHub token for the ghcr image cache). So it failed at auth in ~30s on every PR, running zero pipeline steps. `ci.yml` contained nothing but that one job, so remove the workflow entirely. CI continues to run via the webhook-driven cloud build.
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 GitHub App webhook already runs the
cipipeline in Harmont Cloud on every push/PR (theharmont/harmont-dev-harmont-cli-cicheck). The GHAhm run cijob ran that same pipeline a second time — and since.hm/config.tomlsetsbackend = "cloud", it required anHM_API_TOKENthe workflow never supplied (actions-hm'stokeninput is only the GitHub token for the ghcr image cache). So it failed at auth in ~30s on every PR, running zero pipeline steps.ci.ymlcontained nothing but that one job, so this removes the workflow entirely. CI continues to run via the webhook-driven cloud build.examples.ymlandrelease.ymlare untouched.