Files

18 lines
560 B
YAML
Raw Permalink Normal View History

2021-05-21 19:59:44 +03:00
name: 'Publish action versions'
2021-05-24 16:30:22 +03:00
description: 'Move the major version tag to point to a specified ref'
2021-05-21 19:59:44 +03:00
inputs:
source-tag:
description: 'Tag name that the major tag will point to. Examples: v1.2.3, 1.2.3'
required: true
2021-05-25 21:00:46 +03:00
slack-webhook:
description: 'Slack Webhook URL to post a message'
2021-05-21 19:59:44 +03:00
token:
description: 'Token to get an authenticated Octokit'
default: ${{ github.token }}
outputs:
major-tag:
description: 'The major version tag that has been updated (created). Examples: v1, 1'
runs:
2025-09-03 03:38:09 +01:00
using: 'node24'
2021-05-24 16:30:22 +03:00
main: 'dist/index.js'