2021-05-21 16:59:44 +00:00
|
|
|
name: 'Publish action versions'
|
2021-05-24 13:30:22 +00:00
|
|
|
description: 'Move the major version tag to point to a specified ref'
|
2021-05-21 16:59:44 +00: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 18:00:46 +00:00
|
|
|
slack-webhook:
|
|
|
|
description: 'Slack Webhook URL to post a message'
|
2021-05-21 16:59:44 +00: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:
|
2023-12-07 12:11:08 +00:00
|
|
|
using: 'node20'
|
2021-05-24 13:30:22 +00:00
|
|
|
main: 'dist/index.js'
|