-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
31 lines (31 loc) · 930 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
name: 'auto-arco-release'
description: 'a github actions to auto create release'
author: 'Arco Team'
branding:
icon: 'airplay'
color: 'green'
inputs:
token:
required: true
description: the GITHUB_TOKEN
changelogPaths:
required: true
description: 'the file path to changeLog, If multiple use comma separated'
tagName:
required: true
description: The name of the tag associated with this release
ref:
description: 'github ref'
default: 'main'
headLevel:
default: '2'
description: Used to extract changelog, Title level in markdown. eg like `## version xxx`
draft:
description: 'true to create a draft (unpublished) release, false to create a published one.'
default: false
prerelease:
description: 'true to identify the release as a prerelease. false to identify the release as a full release.'
default: false
runs:
using: 'node12'
main: 'dist/index.js'