ci: workflow_dispatch escape hatches + explicit WASMCLOUD_DOCS_BOT_PAT preflight#1215
Merged
ericgregory merged 2 commits intoJul 8, 2026
Merged
Conversation
…flight Three related fixes for the docs version-bump / offline-docs pipeline that's been failing on every release since early June: - update-version.yml: preflight check that fails with an actionable error when secrets.WASMCLOUD_BOT_PAT is empty (the actual failure mode across every recent run), instead of dying silently at actions/checkout. - tag-after-merge.yml: add workflow_dispatch input so a maintainer can push a docs-v tag from main without going through the PR-merge flow. Same PAT preflight. Still requires the PAT because the tag push must trigger release-docs.yml, which the default GITHUB_TOKEN can't do. - release-docs.yml: add workflow_dispatch input as the no-PAT escape hatch. When PAT-dependent workflows above can't run, dispatching release-docs.yml directly publishes the GitHub Release + tarball + ghcr.io/wasmcloud/docs image using GITHUB_TOKEN alone. Pin tag_name on the Release step so dispatched runs create the release against docs-v<version> rather than the main ref they're dispatched from. Offline docs image (ghcr.io/wasmcloud/docs) has been stuck at 2.2.0 since 2026-06-08 as a downstream consequence — dispatching release-docs.yml with version=2.5.1 unsticks it independent of the PAT rotation. Signed-off-by: Eric Gregory <eric@cosmonic.com>
✅ Deploy Preview for dreamy-golick-5f201e ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Distinct name from the WASMCLOUD_BOT_PAT on wasmCloud/wasmCloud, so the two tokens can diverge in scope, lifetime, or owning account without confusion. Signed-off-by: Eric Gregory <eric@cosmonic.com>
jfleitz
approved these changes
Jul 7, 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.
Updates with a pre-flight check for PAT to surface errors more clearly