File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,25 +4,19 @@ body = """
44## Core
55
66{% for commit in commits|filter(attribute="group", value = "core") %}
7- - {{ commit.message|split(pat="\n ")|first }}
8- {% else %}
9- N/A
7+ - {{ commit.message|split(pat="\n ")|first }} ({{ commit.id }}){% else %}N/A
108{% endfor %}
119
1210## Serialization
1311
1412{% for commit in commits|filter(attribute="group", value = "serialization") %}
15- - {{ commit.message|split(pat="\n ")|first }}
16- {% else %}
17- N/A
13+ - {{ commit.message|split(pat="\n ")|first }} ({{ commit.id }}){% else %}N/A
1814{% endfor %}
1915
2016## Misc
2117
2218{% for commit in commits|filter(attribute="group", value = "misc") %}
23- - {{ commit.message|split(pat="\n ")|first }}
24- {% else %}
25- N/A
19+ - {{ commit.message|split(pat="\n ")|first }} ({{ commit.id }}){% else %}N/A
2620{% endfor %}
2721"""
2822footer = " "
Original file line number Diff line number Diff line change @@ -130,6 +130,8 @@ jobs:
130130 runs-on : ubuntu-latest
131131 name : Create GitHub release
132132 needs : [publish]
133+ permissions :
134+ contents : write
133135 steps :
134136 - name : Checkout repository
135137 uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments