feat(ci): add ws-ckpt signing support in package-source action#479
Open
samchu-zsl wants to merge 1 commit into
Open
feat(ci): add ws-ckpt signing support in package-source action#479samchu-zsl wants to merge 1 commit into
samchu-zsl wants to merge 1 commit into
Conversation
Split the signing step into numbered sub-steps (4.1/4.2/4.3) and add a new 4.3 sub-step that signs ws-ckpt archives when component == 'ws-ckpt', mirroring the existing os-skills and agent-sec-core signing flow. Also renumber the following Summarize / Checksum / Upload steps accordingly. no-issue: extend existing CI signing flow to ws-ckpt component
Collaborator
Author
|
Caution This PR was generated and submitted by AI. |
Collaborator
Author
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.

Description
Extend the shared
package-sourceGitHub composite action to support signingws-ckptrelease archives using the existingsign-skill.shtoolchain, mirroring the flow already implemented foros-skillsandagent-sec-core. The original Step 4/5 signing steps are regrouped as numbered sub-steps (4.1/4.2/4.3) to make the three signing variants read as a single logical phase, and the downstream Summarize / Compute checksum / Upload artifact steps are renumbered to 5/6/7. WhenSKILL_SIGN_PRIVATE_KEYis not provided, a warning is emitted and the archive is published unsigned, matching the behavior of the other two components.Related Issue
no-issue: extends existing CI signing flow to cover the
ws-ckptcomponent; purely additive to the reusable composite action.Type of Change
Scope
cosh(copilot-shell)sec-core(agent-sec-core)skill(os-skills)sight(agentsight)tokenless(tokenless)Checklist
package-lock.json/Cargo.lock)Testing
Change is limited to a reusable GitHub Actions composite action:
os-skillsandagent-sec-coresigning blocks for parity (condition, env,sign-skill.shinvocation, re-archiving,ARCHIVE_SIGNEDflag, fallback warning).ws-ckptrelease run that consumes this action; the unsigned fallback path is preserved whenSKILL_SIGN_PRIVATE_KEYis absent, so existing component builds remain unaffected.Additional Notes
ws-ckptarchives expose asrc/skillsdirectory consumable bysign-skill.sh --batch, consistent with the other signed components.