Skip to content

Commit 76bcaf4

Browse files
filter labels for gnngraphs (#565)
1 parent 8153488 commit 76bcaf4

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.github/workflows/TagBot.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,44 @@ jobs:
4343
token: ${{ secrets.GITHUB_TOKEN }}
4444
ssh: ${{ secrets.DOCUMENTER_KEY }}
4545
subdir: GNNGraphs
46+
changelog: |
47+
## {{ package }} {{ version }}
48+
49+
{% if previous_release %}
50+
[Diff since {{ previous_release }}]({{ compare_url }})
51+
{% endif %}
52+
53+
{% if custom %}
54+
{{ custom }}
55+
{% endif %}
56+
57+
{% if backport %}
58+
This release has been identified as a backport.
59+
Automated changelogs for backports tend to be wildly incorrect.
60+
Therefore, the list of issues and pull requests is hidden.
61+
<!--
62+
{% endif %}
63+
{% if pulls %}
64+
**Merged pull requests:**
65+
{% for pull in pulls %}
66+
{% if "gnngraphs" in pull.labels %}
67+
- {{ pull.title }} (#{{ pull.number }}) (@{{ pull.author.username }})
68+
{% endif %}
69+
{% endfor %}
70+
{% endif %}
71+
72+
{% if issues %}
73+
**Closed issues:**
74+
{% for issue in issues %}
75+
{% if "gnngraphs" in issue.labels %}
76+
- {{ issue.title }} (#{{ issue.number }})
77+
{% endif %}
78+
{% endfor %}
79+
{% endif %}
80+
81+
{% if backport %}
82+
-->
83+
{% endif %}
4684
- name: Tag GNNLux
4785
uses: JuliaRegistries/TagBot@v1
4886
with:

0 commit comments

Comments
 (0)