-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updates changeset config to beautify CHANGELOG.md #36
Conversation
Uses the `@changesets/changelog-github` package to beautify our changelog.
|
`@changesets/changelog-github`
New dependencies detected. Learn more about Socket for GitHub ↗︎
|
I'm stuck trying to test this in the One idea I had is to use an empty changeset with I couldn't find any changesets in the Does anyone have ideas how we could assert that this PR generates the CHANGELOG we are interested in? |
no changesets because no changes since last release. to verify you could branch off of here. write a bogus changeset. run yarn cs version. and check the output. and just not merge that back in anywhere |
Great idea! I'm doing that here:
It looks like we need slightly elevated "read" permissions on Github:
$ yarn changeset version
The following error was encountered while generating changelog entries
We have escaped applying the changesets, and no files should have been affected
🦋 error Error: Please create a GitHub personal access token at https://github.com/settings/tokens/new with `read:user` and `repo:status` permissions and add it as the GITHUB_TOKEN environment variable This is specified in the changeset docs, but it wasn't clear how to configure the permissions. |
I'll ask @pputman-clabs if he can help elevate permissions of |
Test on local machineChangeset generated CHANGELOG as expected locally. Created Github Personal Access Token from my personal account for the Ran $ GITHUB_TOKEN='<paste-token-here>' yarn changeset version Successfully generated the following CHANGELOG.md on this test branch:
Source: bogus branch > CHANGELOG.md |
So as long as the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bit tedious to test this locally but from what I see in both comments and other packages using the @changesets/changelog-github, then it looks good to go!
+1, we can always revert this PR if something goes wrong in the next CHANGELOG generation. |
Slack convo with @pputman-clabs to assert that CI has sufficient Github permissions. At the latest, we'll know whether it works or not in the next release. |
Description
Uses the
@changesets/changelog-github
plugin to beautify ourCHANGELOG.md
as described in the changeset docs.Before
Currently, our
CHANGELOG.md
looks like this:Source: cli/CHANGELOG.md
After
After this PR, the
CHANGELOG.md
will adds links to commits, include a thank-you message to the person who added the changeset, and link to the relevant PR.For example:
Source: changeset/action
Source: viem
Additional info
I found out how to do this thanks to this Github Discussion:
The changelog configuration is as follows:
Source: changeset docs
Our config follows the pattern seen in:
config.json
config.json
How the plugin works and how changeset formats the changelog is described here: changesets > docs > Modifying The Changelog Formats
Tested
master
.Related issues
Backwards compatibility
No breaking change
Documentation
No public facing docs required, changeset is unchanged.