File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 43
43
token : ${{ secrets.GITHUB_TOKEN }}
44
44
ssh : ${{ secrets.DOCUMENTER_KEY }}
45
45
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 %}
46
84
- name : Tag GNNLux
47
85
uses : JuliaRegistries/TagBot@v1
48
86
with :
You can’t perform that action at this time.
0 commit comments