diff --git a/.github/workflows/release-template.yml b/.github/workflows/release-template.yml index 12f0ea0a..b9a869b4 100644 --- a/.github/workflows/release-template.yml +++ b/.github/workflows/release-template.yml @@ -77,6 +77,7 @@ jobs: --output RELEASE_NOTES.md env: GITHUB_REPO: ${{ github.repository }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Create annotated tag run: | diff --git a/cliff.toml b/cliff.toml index b43b4da4..4e2d7e88 100644 --- a/cliff.toml +++ b/cliff.toml @@ -10,7 +10,7 @@ body = """ {{ group }} {% for commit in commits %} - {{ commit.message | upper_first }}\ -{% if commit.remote.pr_number %} ([#{{ commit.remote.pr_number }}]({{ commit.remote.link }})){% endif %} +{% if commit.remote.pr_number %} ([#{{ commit.remote.pr_number }}](https://github.com/{{ remote.github.owner }}/{{ remote.github.repo }}/pull/{{ commit.remote.pr_number }})){% endif %} {% endfor %} {% endfor %}\n @@ -33,3 +33,7 @@ commit_parsers = [ filter_commits = true # Scope tag matching to CalVer template tags only — prevents anchoring to @beakerstack/* package tags tag_pattern = "^[0-9]{4}\\." + +[remote.github] +owner = "Artificer-Innovations" +repo = "BeakerStack"