diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml index 1858f7c3b..35d9864ba 100644 --- a/.github/workflows/TagBot.yml +++ b/.github/workflows/TagBot.yml @@ -31,12 +31,86 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} ssh: ${{ secrets.DOCUMENTER_KEY }} subdir: GraphNeuralNetworks + changelog: | + {% if previous_release %} + [Diff since {{ previous_release }}]({{ compare_url }}) + {% endif %} + + {% if custom %} + {{ custom }} + {% endif %} + + {% if backport %} + This release has been identified as a backport. + Automated changelogs for backports tend to be wildly incorrect. + Therefore, the list of issues and pull requests is hidden. + + {% endif %} + - name: Tag GNNlib uses: JuliaRegistries/TagBot@v1 with: token: ${{ secrets.GITHUB_TOKEN }} ssh: ${{ secrets.DOCUMENTER_KEY }} subdir: GNNlib + changelog: | + {% if previous_release %} + [Diff since {{ previous_release }}]({{ compare_url }}) + {% endif %} + + {% if custom %} + {{ custom }} + {% endif %} + + {% if backport %} + This release has been identified as a backport. + Automated changelogs for backports tend to be wildly incorrect. + Therefore, the list of issues and pull requests is hidden. + + {% endif %} + - name: Tag GNNGraphs uses: JuliaRegistries/TagBot@v1 with: @@ -44,8 +118,6 @@ jobs: ssh: ${{ secrets.DOCUMENTER_KEY }} subdir: GNNGraphs changelog: | - ## {{ package }} {{ version }} - {% if previous_release %} [Diff since {{ previous_release }}]({{ compare_url }}) {% endif %} @@ -81,9 +153,46 @@ jobs: {% if backport %} --> {% endif %} + - name: Tag GNNLux uses: JuliaRegistries/TagBot@v1 with: token: ${{ secrets.GITHUB_TOKEN }} ssh: ${{ secrets.DOCUMENTER_KEY }} subdir: GNNLux + changelog: | + {% if previous_release %} + [Diff since {{ previous_release }}]({{ compare_url }}) + {% endif %} + + {% if custom %} + {{ custom }} + {% endif %} + + {% if backport %} + This release has been identified as a backport. + Automated changelogs for backports tend to be wildly incorrect. + Therefore, the list of issues and pull requests is hidden. + + {% endif %}