Manage secrets for actions

Manage secrets for actions in GitHub — with the four heights of help laid out: do it now, make it easier for the next person to accept, work out the right move when you are stuck, and learn the pattern so it stops coming back.

4prompt heights
Open it in the interactive atlas →

The four heights

The same task, four distances: today's deadline, the next reviewer, the stuck moment, the pattern.

Execute — do the immediate task

+
Rotate the actions secrets used by deployment workflows in the webapp repo. Update the secret named…
Rotate the actions secrets used by deployment workflows in the webapp repo. Update the secret named DEPLOY_KEY with the new RSA key, set the staging key to expire in two weeks, and verify that the deploy job completes successfully when the workflow runs from the ci/deploy branch. Confirm you did not leave the old key accessible to any third-party apps.

Improve — make it easier to accept

+
Before I rotate secrets for workflows, make the change low-risk: list every workflow and runner…
Before I rotate secrets for workflows, make the change low-risk: list every workflow and runner that reads DEPLOY_KEY, surface any third-party apps that reference it, and show which branches might still use the old value. Flag secrets that are reused across environments and suggest a safer per-environment naming approach to reduce blast radius.

Decide — diagnose the stuck moment

+
I replaced DEPLOY_KEY for webapp and now staging deploys immediately fail; production is still fine…

I rotated DEPLOY_KEY and staging deploys failed.

I replaced DEPLOY_KEY for webapp and now staging deploys immediately fail; production is still fine but the staging lead is upset. I worry I missed a workflow or a self-hosted runner that caches secrets. I cannot tell which workflow or runner is using the old key. What is the most likely place it's referenced and the quickest way to identify and fix the failing workflow without touching production secrets?

Become — change the pattern

+
Every quarter we rotate secrets and each rotation spawns emergency fixes: forgotten workflows,…

We constantly scramble rotating secrets and workflows break unexpectedly.

Every quarter we rotate secrets and each rotation spawns emergency fixes: forgotten workflows, third-party apps, and cached runners. We burn days for what should be routine security work. I want a repeatable habit to make secret rotation predictable and low-friction. Recommend a playbook: naming conventions, an inventory routine, and a staged rotation procedure that minimizes outage risk.

Next to this one

Other code hosting work people do in GitHub.

Every task here came from the work, not from a feature list — which is why the prompts name what you want done and never the button that does it. The tool changes; the work does not.
Copyright © LLOS.ai · 2026 — original pedagogy, voice, and design — all rights reserved.

The rest of the map

Same library, five ways in.