forked from Fresa/release-notes-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
43 lines (43 loc) · 1.09 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
name: 'Semantic Release Notes Generator'
description: 'Generates release notes using semantic-release/release-notes-generator'
author: 'Fredrik Arvidsson'
inputs:
github_token:
description: 'The Github token used to query this repository'
required: true
default: ${{ github.token }}
version:
description: 'The version of the release'
required: true
from_ref_exclusive:
description: >-
The commit reference to gather commits after.
The reference can be a tag, a branch or a commit sha.
Examples:
tags/v1.0.1
v1.0.1
heads/my-branch
my-branch
431880b
required: true
to_ref_inclusive:
description: >-
The last commit reference to include.
The reference can be a tag, a branch or a commit sha.
Examples:
tags/v2.0.0
v2.0.0
heads/master
master
531c800
required: true
outputs:
release_notes:
description: 'Semantic release notes'
runs:
using: 'node12'
pre: 'fetch_artifact.js'
main: 'dist/index.js'
branding:
icon: 'file-text'
color: 'orange'