manually publish#71
Conversation
|
Caution Review failedThe pull request is closed. WalkthroughAdds a manual trigger to the GitHub Actions publish workflow and updates the job condition so the version collection runs when manually dispatched. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant Dev as Developer
participant GH as GitHub Actions
participant WF as publish.yaml
participant Job as collect-version
rect rgb(235, 245, 255)
note over Dev,GH: New/updated control flow
Dev->>GH: Push/Tag (existing) OR Manual dispatch (workflow_dispatch)
GH->>WF: Trigger workflow
alt Event is push/tag or workflow_dispatch
WF->>Job: Evaluate condition (includes workflow_dispatch)
Job-->>WF: Runs collect-version
else Other events
WF-->>Job: Skipped
end
end
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Poem
✨ Finishing touches🧪 Generate unit tests
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
Automated deployment preview for the PR in the Cloudflare Pages. |
|
manually publish what |
Github workflows can be manually triggered. This will hopefully allow you or me to manually trigger this workflow for a test build in any branch, instead of waiting for main branch. I don't want this to be automatically in every push as they take very long each time. |
Github workflows can be manually triggered. This will hopefully allow you or me to manually trigger this workflow for a test build in any branch, instead of waiting for main branch. I don't want this to be automatically in every push as they take very long each time. |
Summary by CodeRabbit