From 62ecd51666acfd0fe6c1140464c6e732f82dd953 Mon Sep 17 00:00:00 2001 From: hhaensel <31985040+hhaensel@users.noreply.github.com> Date: Mon, 20 Nov 2023 01:27:10 +0100 Subject: [PATCH] Create TagBot.yml --- .github/workflows/TagBot.yml | 69 ++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 .github/workflows/TagBot.yml diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml new file mode 100644 index 0000000..b0d0075 --- /dev/null +++ b/.github/workflows/TagBot.yml @@ -0,0 +1,69 @@ + - name: Julia TagBot + # You may pin to the exact commit or the version. + # uses: JuliaRegistries/TagBot@4e2dfa4ac8ad1e1a0af1e03f8411855200fac8ce + uses: JuliaRegistries/TagBot@v1.15.0 + with: + # GitHub API token + token: + # Owner/name of the registry repository + registry: # optional, default is JuliaRegistries/General + # URL of self-hosted GitHub + github: # optional, default is github.com + # API base URL of self-hosted GitHub + github_api: # optional, default is api.github.com + # Whether or not to merge release branches + branches: # optional + # Whether or not to create a repository dispatch event prior to making releases + dispatch: # optional + # Number of minutes to wait after creating a repository dispatch event + dispatch_delay: # optional, default is 5 + # Number of days to look back in time for new releases + lookback: # optional, default is 3 + # SSH private key for pushing tags + ssh: # optional + # Password for the SSH key + ssh_password: # optional + # GPG key for signing tags + gpg: # optional + # Password for the GPG key + gpg_password: # optional + # SSH private key for accessing a private registry + registry_ssh: # optional + # Create draft releases + draft: # optional + # Git username + user: # optional, default is github-actions[bot] + # Git email + email: # optional, default is 41898282+github-actions[bot]@users.noreply.github.com + # Branch to create releases against when possible + branch: # optional + # Subdirectory of package in repo, if not at top level + subdir: # optional + # Changelog template + changelog: # optional, default is ## {{ package }} {{ version }} + +{% if previous_release %} +[Diff since {{ previous_release }}]({{ compare_url }}) +{% endif %} + +{% if custom %} +{{ custom }} +{% endif %} + +{% if issues %} +**Closed issues:** +{% for issue in issues %} +- {{ issue.title }} (#{{ issue.number }}) +{% endfor %} +{% endif %} + +{% if pulls %} +**Merged pull requests:** +{% for pull in pulls %} +- {{ pull.title }} (#{{ pull.number }}) (@{{ pull.author.username }}) +{% endfor %} +{% endif %} + + # Labels for issues and pull requests to be ignored (comma-delimited) + changelog_ignore: # optional +