From 98c2c4f77f4a143dbf54c341800a7995c1789fec Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Mon, 13 Nov 2023 10:26:21 +0100 Subject: [PATCH] Update TagBot configuration. --- .github/workflows/TagBot.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml index f49313b..dd79b51 100644 --- a/.github/workflows/TagBot.yml +++ b/.github/workflows/TagBot.yml @@ -4,6 +4,22 @@ on: types: - created workflow_dispatch: + inputs: + lookback: + default: 3 +permissions: + actions: read + checks: read + contents: write + deployments: read + issues: read + discussions: read + packages: read + pages: read + pull-requests: read + repository-projects: read + security-events: read + statuses: read jobs: TagBot: if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' @@ -11,5 +27,15 @@ jobs: steps: - uses: JuliaRegistries/TagBot@v1 with: + changelog: | + {% if custom %} + {{ custom }} + {% endif %} + + See [`CHANGELOG.md`](https://github.com/JuliaDocs/Changelog.jl/blob/master/CHANGELOG.md) for notable changes. + + {% if previous_release %} + [Diff since {{ previous_release }}]({{ compare_url }}) + {% endif %} token: ${{ secrets.GITHUB_TOKEN }} ssh: ${{ secrets.DOCUMENTER_KEY }}