fix: adopt trigger-website-update, fix manual-fallback workflow paths - #7
Merged
Conversation
…flows/ path Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
1 task
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.
Summary
manual-fallback-website-*.ymlworkflows: the "get Trigganator token →peter-evans/repository-dispatch" pair collapses into onehelpers4/action/trigger-website-update@maincall eachREADME.mdrunbook) lived atworkflows/*.yml— repo-root/workflows/, not.github/workflows/. GitHub Actions only recognizes workflows under the real.github/workflows/path, so these have never actually been registered as runnable workflows — confirmed viagh api repos/helpers4/.github/actions/workflows, which only listsreusable-auto-assign.ymlandreusable-proof-html.yml(the ones already at the correct nested path,.github/.github/workflows/relative to this bind mount). The README's own runbook ("Open Actions in helpers4/.github, run Manual Fallback...") has never actually worked. Moved all 4 files to.github/workflows/so they show up in the Actions tab and can actually run.workflows/auto-assign.ymlhas the exact same misplacement bug (repo-root/workflows/ instead of.github/workflows/) and is likewise dead — this repo's own issues/PRs never get auto-assigned. Left untouched since it's unrelated to the website-trigger rollout and enabling it is a real behavior change (vs. these manual-only fallbacks) that deserves its own decision, not a drive-by fix.Test plan
Manual Fallback - Trigger Website Update (*)workflows appear under the Actions tab (they never have before)workflow_dispatchto confirmtrigger-website-updatedispatches correctly🤖 Generated with Claude Code