You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Observation recorded while verifying #5405. Filed unassigned and deliberately not acted on: the resolution here is a judgement call about whether the repo wants an auto-updated root CHANGELOG.md at all, not a mechanical deletion, and it is a different fact from #5405 with a different fix.
Measured
.github/workflows/changelog.yml ("Auto Changelog", id 223701081) has total_count: 0 workflow runs, exactly like the release.yml of #5405.
Counter-probes, through the identical call: changeset-release.yml returns 3902, a bogus workflow name returns HTTP 404 rather than 0. Retention is not hiding old runs either — stale.yml shows 216 runs since its creation on 2026-01-15, and shadcn-check.yml's first page still reaches back to 2026-02-09. The zero is real and spans the repo's whole life.
Why the zero here means something different from #5405
release.yml had a trigger nothing in the repo could satisfy — no v-prefixed tag has ever existed. changelog.yml's trigger is satisfied constantly, and still does not fire:
on:
release:
types: [published]workflow_dispatch:
Releases are published here — hundreds of them, per package, most recently 2026-08-14. But every one is authored by github-actions[bot], created by the Changesets action on changeset-release.yml using secrets.GITHUB_TOKEN. GitHub deliberately does not start new workflow runs from events raised with GITHUB_TOKEN, precisely to stop recursive triggering. So the automated release path structurally cannot wake this workflow.
That leaves two paths that would work and have apparently never been used: a release published by a human through the UI, or a manual workflow_dispatch.
What follows from it
The root CHANGELOG.md is not being auto-updated by this workflow, and has not been since the repo was created. Anyone reading .github/workflows/ reasonably concludes it is. Worth noting that per-package changelogs are a separate mechanism that does work — Changesets writes those on the release commit — so this is about the root CHANGELOG.md only.
Three defensible resolutions, and picking between them needs a maintainer rather than an agent:
Give it a trigger that can actually fire — e.g. run it from the release path itself rather than waiting on an event that path cannot emit.
Keep it dispatch-only on purpose, and say so in content/docs/guide/ci-cd-pipeline.md, whose inventory row currently reads "GitHub Release published; manual" without noting that the first half never happens.
I have not tried to establish which is wanted, and the release: published half is a real trigger rather than a dead one, so this is filed as an observation and not as a deletion card.
Observation recorded while verifying #5405. Filed unassigned and deliberately not acted on: the resolution here is a judgement call about whether the repo wants an auto-updated root
CHANGELOG.mdat all, not a mechanical deletion, and it is a different fact from #5405 with a different fix.Measured
.github/workflows/changelog.yml("Auto Changelog", id223701081) hastotal_count: 0workflow runs, exactly like therelease.ymlof #5405.Counter-probes, through the identical call:
changeset-release.ymlreturns 3902, a bogus workflow name returns HTTP 404 rather than 0. Retention is not hiding old runs either —stale.ymlshows 216 runs since its creation on 2026-01-15, andshadcn-check.yml's first page still reaches back to 2026-02-09. The zero is real and spans the repo's whole life.Why the zero here means something different from #5405
release.ymlhad a trigger nothing in the repo could satisfy — nov-prefixed tag has ever existed.changelog.yml's trigger is satisfied constantly, and still does not fire:Releases are published here — hundreds of them, per package, most recently 2026-08-14. But every one is authored by
github-actions[bot], created by the Changesets action onchangeset-release.ymlusingsecrets.GITHUB_TOKEN. GitHub deliberately does not start new workflow runs from events raised withGITHUB_TOKEN, precisely to stop recursive triggering. So the automated release path structurally cannot wake this workflow.That leaves two paths that would work and have apparently never been used: a release published by a human through the UI, or a manual
workflow_dispatch.What follows from it
The root
CHANGELOG.mdis not being auto-updated by this workflow, and has not been since the repo was created. Anyone reading.github/workflows/reasonably concludes it is. Worth noting that per-package changelogs are a separate mechanism that does work — Changesets writes those on the release commit — so this is about the rootCHANGELOG.mdonly.Three defensible resolutions, and picking between them needs a maintainer rather than an agent:
release.yml— 0 runs in the repository's history; it waits onv*tags nothing pushes #5405 did forrelease.yml, if the rootCHANGELOG.mdis not something anyone relies on. Notecliff.tomlexists solely to configure this workflow'sgit-cliffstep and would go with it.content/docs/guide/ci-cd-pipeline.md, whose inventory row currently reads "GitHub Release published; manual" without noting that the first half never happens.I have not tried to establish which is wanted, and the
release: publishedhalf is a real trigger rather than a dead one, so this is filed as an observation and not as a deletion card.Evidence: #5405, #5393.