Allow deploy-book to be triggered manually#7
Merged
Conversation
Publishing a full GitHub release for a small docs-only fix (e.g. a single figure) is overkill. Add workflow_dispatch so the book can be rebuilt and redeployed on demand without cutting a new release. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
check-notebook-widgets is a required status check on main. With a paths filter, PRs that don't touch a notebook (like this one) never get a check run at all -- and GitHub's branch protection treats a check that never ran as blocking, not passing, leaving such PRs permanently stuck. The check is cheap, so just always run it. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
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.
Adds
workflow_dispatchto deploy-book.yml so the docs can be rebuilt/redeployed on demand (e.g. after a small docs-only fix) without needing to publish a new release.