ci: remove broken changeset-bot workflow in favor of GitHub App#373
Merged
kimyouknow merged 1 commit intomainfrom Apr 21, 2026
Merged
ci: remove broken changeset-bot workflow in favor of GitHub App#373kimyouknow merged 1 commit intomainfrom
kimyouknow merged 1 commit intomainfrom
Conversation
The changesets/bot repository is a Probot-based GitHub App, not a reusable GitHub Action. It ships with app.yml / pages/api/webhook.ts rather than action.yml, so 'uses: changesets/bot@<ref>' has been failing ever since #350 introduced it. - PR #350 used '@v1' (tag does not exist) → failed from day one - PR #363 changed to '@<master SHA>' → resolved the SHA but still failed because the repo has no action.yml / Dockerfile Correct usage is documented in the project README: install the GitHub App from https://github.com/apps/changeset-bot. The App has now been installed on the @toss organization with access to toss/react-simplikit and will comment on PRs automatically, making this workflow redundant. Removing this file unblocks the 'bot' check column on every PR.
|
Contributor
|
Size Change: 0 B 🆕 Total Size: 0 B |
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.
Summary
Removes the broken
.github/workflows/changeset-bot.ymlworkflow. Thechangesets/botrepository is a Probot-based GitHub App (deployed as a Next.js app on Vercel), not a reusable GitHub Action. It has noaction.ymlorDockerfile, souses: changesets/bot@<ref>has been failing since it was introduced.Root cause timeline
uses: changesets/bot@v1v1tag does not exist → failed from day one@<master SHA>Can't find action.yml / DockerfileVerified via the repo tree —
changesets/botships only these:Global code search (
gh search code "changesets/bot") returned only this repository usinguses: changesets/bot@*. No other project uses this pattern — the README explicitly directs to install the GitHub App.Replacement
The
changeset-botGitHub App has been installed on@tosswith access totoss/react-simplikit. The App will automatically comment on every PR about changeset status — same behavior the broken workflow was trying to replicate.App install URL: https://github.com/apps/changeset-bot
Scope
.github/workflows/changeset-bot.ymlchangesets/action@v1.7.0used inrelease.yml(that is a real action and works correctly)Test plan
botcheck column no longer appears on PRs