solidusio / solidus_dev_support

A collection of tools for developing Solidus extensions.
MIT License
21 stars 27 forks source link

Consider replacing the changelog generator with GitHub's release notes generator #197

Open elia opened 1 year ago

elia commented 1 year ago

It would be a simple API call, using the same token as before, and the contents can be reused for both the changelog and the release.

curl -X POST \
  -H "Accept: application/vnd.github+json" \
  -H "Authorization: Bearer $CHANGELOG_GITHUB_TOKEN"\
  -H "X-GitHub-Api-Version: 2022-11-28" \
  https://api.github.com/repos/solidusio/solidus_paypal_braintree/releases/generate-notes \
  -d '{"previous_tag_name":"v1.1.1","tag_name":"v1.1.0","target_commitish":"main"}'

cc @waiting-for-dev