feat(ci): add Kipp Managed Services composite actions - #177
Merged
Conversation
Contributor
🛡️ SHA Pinned Actions Report✅ All 31 file(s) passed — actions are allowed and pinned as required. |
pleb
enabled auto-merge
August 24, 2026 08:00
pleb
marked this pull request as draft
August 24, 2026 08:02
auto-merge was automatically disabled
August 24, 2026 08:02
Pull request was converted to draft
pleb
force-pushed
the
feat/kipp-managed-services
branch
from
August 24, 2026 09:17
be79928 to
200a524
Compare
Adds two composite actions for repository automation. setup-kipp installs a pinned @makerx-trusted-access/kipp package from the trusted-access registry using an OIDC token minted in the same step, provisions an isolated Pi environment for the job, and exports the package path, runtime path and non-secret provider configuration. The kipp-version input takes an exact version, or the literal latest for the self-maintenance workflow that proposes pin bumps. run-kipp-automation executes an automation through that runtime via actions/github-script, in the all, work or publish phase. Workflow values reach the runtime through the environment rather than script interpolation, and OIDC request variables can be scrubbed before the automation step runs.
pleb
force-pushed
the
feat/kipp-managed-services
branch
from
August 25, 2026 02:49
41230bb to
a78372e
Compare
pleb
marked this pull request as ready for review
August 25, 2026 02:51
PatrickDinh
approved these changes
Aug 25, 2026
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.
Adds the shared mechanics for Kipp Managed Services, consumed by generated repository-owned workflows:
setup-kippinstalls the pinned Kipp package through GitHub OIDC, creates an isolated Pi environment, and exports the resolved runtime and non-secret provider configuration to the job.run-kipp-automationvalidates its inputs, optionally removes the OIDC request variables and verifies the scrub, and runs the automation without interpolating workflow inputs into executable code.setup-kippvalidates every input before installing anything: values carrying a carriage return or newline are rejected, Entra and subscription identifiers must be GUIDs, endpoint URLs must be https, and a literalai-api-keyis registered with the secret masker (percent-escaped so the mask matches the real value).The two actions are wired through the job environment rather than through inputs.
setup-kippexportsKIPP_PACKAGE_PATH,KIPP_RUNTIME_PATHand the provider selection, andrun-kipp-automationreads them, so a caller cannot point the automation step at a runtime thatsetup-kippdid not install.scrub-oidc-envdefaults tofalse. Clearing the OIDC request variables applies to the rest of the job, not just the automation step, so it is opt-in for callers that have confirmed no provider or later step needs to mint an OIDC token. Theazure-foundryprovider does need them.This PR intentionally contains only the two composite action manifests. All action references are pinned to full commit SHAs.