Update TagBot.yml #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: Julia TagBot | ||
# You may pin to the exact commit or the version. | ||
# uses: JuliaRegistries/TagBot@4e2dfa4ac8ad1e1a0af1e03f8411855200fac8ce | ||
uses: JuliaRegistries/[email protected] | ||
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 | ||