-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
38 lines (38 loc) · 863 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
name: 'Tagger'
description: 'Creating a new release using the labels from the Pull Request'
author: 'Denis Panfilov'
inputs:
github-token:
description: The GitHub token used to create an authenticated client.
required: false
default: ${{ github.token }}
pr-number:
description: PR number
required: false
default: ${{ github.event.number }}
prefix:
description: Tag prefix
required: false
default: v
default-tag:
description: Default tag
required: false
default: 0.0.0
major-tag:
description: Major tag name
default: major
minor-tag:
description: Minor tag name
default: minor
patch-tag:
description: Patch tag name
default: patch
outputs:
tag:
description: 'The newly generated version'
runs:
using: docker
image: Dockerfile
branding:
icon: 'tag'
color: 'orange'