chore: Add agents scope#14
Closed
mike12345567 wants to merge 1 commit into
Closed
Conversation
There was a problem hiding this comment.
No issues found across 3 files
Architecture diagram
sequenceDiagram
participant Dev as Developer
participant Repo as Repository
participant CI as CI/CD Pipeline
participant Release as Release System
Note over Dev,Release: Conventional Commit Scope Registration
Dev->>Repo: Commit with scope:agents
Repo->>CI: Trigger pipeline
CI->>CI: Parse commit message
CI->>CI: Check scope against allowed list
alt Scope is "agents"
CI->>CI: NEW: Route to agents build track
CI->>CI: Run agents-specific tests
CI->>CI: Build agents artifacts
CI-->>Repo: Report success
else Scope is another valid scope
CI->>CI: Process as before
end
Note over CI,Release: Release Automation
CI->>Release: NEW: Trigger agents release
Release->>Release: Generate agents changelog
Release->>Release: Publish agents version
Release-->>CI: Release confirmation
Note over Dev,Release: Configuration Boundary
Note over Repo: src/constants.js contains scopes list
Note over CI: Uses scopes to route builds
Note over Release: Uses scopes to version independently
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.
Scope for new agents as first class citizens feature, independent from workflows/core.
Summary by cubic
Adds the
agentsscope to our conventional commit scopes so Agents work can be tracked and released independently fromcore/workflows. Regeneratesdistartifacts to reflect the change.Written for commit 0475b1a. Summary will update on new commits.