generated from clicampo/gh-action-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
39 lines (39 loc) · 1.36 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Publish SemVer release
description: Creates GitHub releases, changelogs and tags the release
author: Henrique Cunha
inputs:
github-token:
required: true
description: GitHub personal access token
git-committer-name:
required: true
description: Git committer name
default: Publish SemVer release action
git-committer-email:
required: true
description: Git committer email
default: [email protected]
release-candidate:
required: false
description: Determines if the release is a release candidate
default: 'true'
slack-webhook-url:
required: false
description: A webhook URL of a Slack channel that if provided, will notify the release
discord-webhook-url:
required: false
description: A webhook URL of a Discord text channel that if provided, will notify the release
project-url:
required: false
description: A URL of the project that will be used in the slack notification
production-action-url:
required: false
description: A URL of the production deployment action that will be used in the slack notification
outputs:
next-version:
description: Next version to be released
release-type:
description: Type of release
runs:
using: 'node16'
main: 'dist/index.js'