-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
39 lines (39 loc) · 1001 Bytes
/
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: 'Autotag'
author: 'phish108'
description: 'Autotag with Semantic Versioning and Issue integration'
branding:
icon: tag
color: blue
inputs:
github-token: # id of input
default: ${{ github.token }}
required: false
description: 'the GH token to connect to github from the action'
dry-run:
description: "check if the action would succeed"
required: false
default: "FALSE"
bump:
description: "which part of the semver needs to be updated?"
required: false
default: "patch"
branch:
description: "force to tag a specific branch"
required: false
default: ""
with-v:
description: "use version prefix"
required: false
default: "FALSE"
release-branch:
description: "provide the names from which branches to release"
required: false
default: "main,master"
outputs:
new-tag: # id of output
description: 'new tag'
tag: # id of output
description: 'latest tag'
runs:
using: 'node12'
main: 'dist/index.js'