CI: improve manual-dispatch UX for the all-notebooks sweep#158
Open
bendichter wants to merge 1 commit into
Open
CI: improve manual-dispatch UX for the all-notebooks sweep#158bendichter wants to merge 1 commit into
bendichter wants to merge 1 commit into
Conversation
The workflow already had a workflow_dispatch trigger (added in PR #153), but the only input was the regex filter — which is awkward for the common ad-hoc use cases. Three improvements: - Rename to 'Test all notebooks (weekly + on-demand)' so it's obvious from the Actions page that manual dispatch is supported. - Add `single_notebook` input — paste a notebook path to test just that one, no regex needed. Overrides the filter if set. - Add `file_issue` toggle (true/false dropdown, default true). On scheduled weekly runs the tracking issue gets filed/updated as before; on ad-hoc dispatch a user can set it to false to avoid noisy issue comments while iterating. How to use: Actions tab → 'Test all notebooks (weekly + on-demand)' → 'Run workflow' button (top right) → fill in inputs → Run. Or from the CLI: gh workflow run 'Test all notebooks (weekly + on-demand)' \ -f single_notebook='000582/Sargolini2006/000582_Sargolini2006_demo.ipynb' \ -f file_issue=false Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
Index page previewA preview of the generated Last updated: commit |
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 all-notebooks sweep workflow already had a
workflow_dispatchtrigger (added in PR #153), but the only input was a regex filter — awkward for the common ad-hoc use cases. Three improvements:Changes
Renamed to Test all notebooks (weekly + on-demand) so it's obvious from the Actions page that manual dispatch is supported.
Added
single_notebookinput — paste one notebook path to test just that one, no regex needed. Overrides the filter if set. Useful for: "I just changed Sargolini, run only that against the full sweep environment."Added
file_issuetoggle (true/false dropdown, default true).falseto avoid noisy issue comments while iterating on a change.How to use after this lands
Web UI:
CLI:
Note: this was already partly possible
The
workflow_dispatchtrigger has existed since PR #153 merged — the "Run workflow" button has been on the Actions page since then. This PR just makes the inputs richer and the workflow name clearer.🤖 Generated with Claude Code