-
Notifications
You must be signed in to change notification settings - Fork 5
/
action.yml
46 lines (46 loc) · 1.33 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
40
41
42
43
44
45
46
name: 'Auto Release'
description: 'Automatically create a release based on commit messages'
inputs:
title:
description: 'Title for the release'
required: false
default: 'Version $semver'
tag:
description: 'Name for the git tag'
required: false
default: '$version'
draft:
description: 'Whether or not this release should be published as a draft'
required: false
default: 'false'
changelog:
description: 'The path to the CHANGELOG'
required: false
default: 'CHANGELOG.md'
changelog-entry:
description: 'String a CHANGELOG entry must contain to be used as the entry for this release'
required: false
default: '$version'
regex:
description: 'Pattern the commit message must match to create a release'
required: false
prerelease-regex:
description: 'Pattern the commit message must match to mark the release as a prerelease'
required: false
outputs:
released:
description: 'Whether or not a release was created'
id:
description: 'The id of the release'
version:
description: 'The version that was released'
html_url:
description: 'The URL users can navigate to in order to view the release'
upload_url:
description: 'The URL for uploading assets to the release'
runs:
using: 'node12'
main: 'dist/main.js'
branding:
icon: 'tag'
color: 'green'