From d3d1b8e9393f80a8c33e3c5a76b02ebd0d8de904 Mon Sep 17 00:00:00 2001 From: kimyouknow Date: Wed, 18 Mar 2026 10:27:47 +0900 Subject: [PATCH] ci: add changeset bot for automatic PR guidance Add changesets/bot to comment on PRs about changeset status, helping external contributors remember to include changesets. --- .github/workflows/changeset-bot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/changeset-bot.yml diff --git a/.github/workflows/changeset-bot.yml b/.github/workflows/changeset-bot.yml new file mode 100644 index 00000000..9c837c02 --- /dev/null +++ b/.github/workflows/changeset-bot.yml @@ -0,0 +1,14 @@ +name: Changeset Bot + +on: + pull_request_target: + types: [opened, synchronize] + +permissions: + pull-requests: write + +jobs: + bot: + runs-on: ubuntu-latest + steps: + - uses: changesets/bot@v1