From 4fd73bc1761e9ec306ef88e14cb77949916f5b54 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Thu, 27 Nov 2025 13:08:03 -0500 Subject: [PATCH 1/2] docs: mention changeset in contributing docs --- .github/CONTRIBUTING.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 302d4b47e..4d0de4a41 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -44,6 +44,9 @@ Only PR titles need to be in that format, not individual commits. Don't worry if you get this wrong: you can always change the PR title after sending it. Check [previously merged PRs](https://github.com/JoshuaKGoldberg/flint/pulls?q=is%3Apr+is%3Amerged+-label%3Adependencies+) for reference. +Finally, if your PR includes any user-facing changes, run `pnpm changeset` to [add a proper changeset](https://github.com/changesets/changesets/blob/main/docs/adding-a-changeset.md). +This will allow our release automation to version packages appropriately when the next release happens. + #### Draft PRs If you don't think your PR is ready for review, [set it as a draft](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#converting-a-pull-request-to-a-draft). From 8d4636966e7f7e49fb85d1a8d1b9582ec854e23e Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Fri, 28 Nov 2025 12:12:09 -0500 Subject: [PATCH 2/2] Mention using PR title --- .github/CONTRIBUTING.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 4d0de4a41..147b17b47 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -45,6 +45,7 @@ Don't worry if you get this wrong: you can always change the PR title after send Check [previously merged PRs](https://github.com/JoshuaKGoldberg/flint/pulls?q=is%3Apr+is%3Amerged+-label%3Adependencies+) for reference. Finally, if your PR includes any user-facing changes, run `pnpm changeset` to [add a proper changeset](https://github.com/changesets/changesets/blob/main/docs/adding-a-changeset.md). +You can copy the exact title from the PR. This will allow our release automation to version packages appropriately when the next release happens. #### Draft PRs