Skip to content

Commit af1d119

Browse files
authored
Merge pull request #33 from sandialabs/fix-release-notes-template
fix: Release notes template
2 parents 99d68d2 + d83ae5d commit af1d119

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/semantic-release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
uses: python-semantic-release/python-semantic-release@master
2424
with:
2525
github_token: ${{ secrets.GH_TOKEN }}
26-
root_options: "-vv"
2726

2827
- name: Publish to PyPI
2928
uses: pypa/gh-action-pypi-publish@release/v1
@@ -34,4 +33,3 @@ jobs:
3433
if: steps.release.outputs.released == 'true'
3534
with:
3635
github_token: ${{ secrets.GH_TOKEN }}
37-
root_options: "-vv"

templates/release_notes.md.j2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{% set version, release = context.history.released.items() | first %}
12
# {{ version.as_tag() }} ({{ release.tagged_date.strftime("%Y-%m-%d") }})
23
{% for type_, commits in release["elements"] | dictsort %}
34
## {{ type_ | capitalize if type_ != "ci" else "Continuous Integration" }}

0 commit comments

Comments
 (0)