con un clic
lock-release-docs
Lock docs and scripts on a release branch to a specific patch version
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Lock docs and scripts on a release branch to a specific patch version
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
| name | lock-release-docs |
| description | Lock docs and scripts on a release branch to a specific patch version |
| argument-hint | <release-branch> <version> |
| disable-model-invocation | true |
Lock all documentation and scripts on a release branch so they reference a
specific version instead of floating references like main or latest.
Arguments: $0 = release branch (e.g. release-1.9), $1 = version to
lock to (e.g. 1.9.3)./
upstream remote.$0 and make sure it is up to date with upstream/$0.lock-$0-docs) off of $0.Search docs/ and hack/ thoroughly for the patterns below. Do not assume a
fixed set of files -- new docs or scripts may introduce new instances over time.
mainAny raw.githubusercontent.com/akuity/kargo/main/... or
github.com/akuity/kargo/tree/main/... URL should be updated to reference
the release branch instead (e.g. refs/heads/$0 for raw content URLs,
tree/$0 for tree links).
latestAny github.com/akuity/kargo/releases/latest/download/... URL should be
pinned to the specific version: releases/download/v$1/....
Any helm install, helm upgrade, or helm inspect values command that
references oci://ghcr.io/akuity/kargo-charts/kargo without a --version
flag needs --version $1 added. Place it on the line immediately after the
chart URL, before any --namespace or --set flags, to match the style used
by nearby third-party chart installs.
Do not modify helm commands for third-party charts (cert-manager, Argo CD, Argo Rollouts, etc.) -- those manage their own version pins.