Convert Int64 to standard Int to maintain 32-bit compatibility #2
Workflow file for this run
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: TagBot | ||
on: | ||
issue_comment: | ||
types: | ||
- created | ||
workflow_dispatch: | ||
jobs: | ||
TagBot: | ||
if: github.event_name == 'workflow_dispatch' || github.actor == '{{{TRIGGER}}}' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: JuliaRegistries/TagBot@v1 | ||
with: | ||
token: {{{TOKEN}}} | ||
{{#SSH}} | ||
ssh: {{{SSH}}} | ||
{{/SSH}} | ||
{{#SSH_PASSWORD}} | ||
ssh_password: {{{SSH_PASSWORD}}} | ||
{{/SSH_PASSWORD}} | ||
{{#CHANGELOG}} | ||
changelog: {{{CHANGELOG}}} | ||
{{/CHANGELOG}} | ||
{{#CHANGELOG_IGNORE}} | ||
changelog_ignore: {{{CHANGELOG_IGNORE}}} | ||
{{/CHANGELOG_IGNORE}} | ||
{{#GPG}} | ||
gpg: {{{GPG}}} | ||
{{/GPG}} | ||
{{#GPG_PASSWORD}} | ||
gpg_password: {{{GPG_PASSWORD}}} | ||
{{/GPG_PASSWORD}} | ||
{{#REGISTRY}} | ||
registry: {{{REGISTRY}}} | ||
{{/REGISTRY}} | ||
{{#BRANCHES}} | ||
branches: {{{BRANCHES}}} | ||
{{/BRANCHES}} | ||
{{#DISPATCH}} | ||
dispatch: {{{DISPATCH}}} | ||
{{/DISPATCH}} | ||
{{#DISPATCH_DELAY}} | ||
dispatch_delay: {{{DISPATCH_DELAY}}} | ||
{{/DISPATCH_DELAY}} |