Name the scope the overview actually needs

This commit is contained in:
2026-08-22 14:21:14 +02:00
parent cbf55bebae
commit bcff5967ad
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -90,8 +90,8 @@ async function main(): Promise<number> {
return fail(
`Docker Hub overview PATCH failed: ${res.status} ${res.text}` +
(res.status === 403
? "\n403 means DOCKERHUB_OVERVIEW_TOKEN cannot edit repository metadata — a separate " +
"permission from pushing images, which is why it is its own secret (README -> CI/CD)."
? "\n403 means DOCKERHUB_OVERVIEW_TOKEN lacks the delete scope — editing the overview needs " +
"read/write/delete, which pushing images does not (README -> CI/CD)."
: ""),
);
}