-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor workflows #121
Refactor workflows #121
Conversation
Caution Review failedThe pull request is closed. WalkthroughThe changes update three GitHub Actions workflows. In both the build and CodeQL workflows, the conditions for skipping CI jobs now check for the string “[skip ci]” in pull request titles, bodies, or labels instead of “[ci skip]”, and the triggering events have been adjusted. In the release workflow, job identifiers have been renamed to reflect a build-centric process, and the artifact upload step has been refactored into a dedicated job using the Changes
Sequence Diagram(s)sequenceDiagram
participant PR as "Pull Request"
participant GitHub as "GitHub Actions"
participant BuildJob as "Build Job"
participant CodeQLJob as "CodeQL Job"
PR->>GitHub: Submit/Update with title, body, labels
GitHub->>GitHub: Check for “[skip ci]” flag and label
alt Skip CI conditions met
GitHub-->>BuildJob: Skip build job
GitHub-->>CodeQLJob: Skip CodeQL analysis
else
GitHub->>BuildJob: Execute build workflow (PR/Merge trigger)
GitHub->>CodeQLJob: Execute CodeQL analysis (all branch trigger)
end
sequenceDiagram
participant Repo as "Repository"
participant BuildLinux as "Build-Linux"
participant BuildMac as "Build-MacOS"
participant BuildWin as "Build-Windows"
participant Uploader as "Upload-Assets"
participant Publisher as "Publish Release"
Repo->>BuildLinux: Trigger build job
Repo->>BuildMac: Trigger build job
Repo->>BuildWin: Trigger build job
BuildLinux->>Uploader: Upload Linux artifacts
BuildMac->>Uploader: Upload MacOS artifacts
BuildWin->>Uploader: Upload Windows artifacts
Uploader->>Publisher: Trigger release publishing
Poem
Tip 🌐 Web search-backed reviews and chat
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (3)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Summary by CodeRabbit