-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
88 lines (85 loc) · 3.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: 'Create Tag And Release'
description: 'Create tag and release'
author: 'Gabriel Gregório'
inputs:
tag_name:
description: 'The name of the tag.'
required: true
release_name:
description: 'The name of the release.'
required: false
body:
description: 'body of release'
required: false
body_path:
description: 'file that will contain the release body. If informed, body will be disregarded'
required: false
draft:
description: 'true to create a draft (unpublished) release, false to create a published one. Default: false'
required: false
default: false
prerelease:
description: 'true to identify the release as a prerelease. false to identify the release as a full release. Padrão: false'
required: false
default: false
target_commitish:
description: "Specifies the commitish value that determines where the Git tag is created from. Can be any branch or commit SHA. Unused if the Git tag already exists. Default: the repository's default branch."
required: false
owner:
description: 'The account owner of the repository. The name is not case sensitive.'
required: false
repo:
description: 'The name of the repository without the .git extension. The name is not case sensitive.'
required: false
discussion_category_name:
description: 'If specified, a discussion of the specified category is created and linked to the release. The value must be a category that already exists in the repository. For more information, see "Managing categories for discussions in your repository."'
required: false
generate_release_notes:
description: 'Whether to automatically generate the name and body for this release. If name is specified, the specified name will be used; otherwise, a name will be automatically generated. If body is specified, the body will be pre-pended to the automatically generated notes. Padrão: false'
required: false
default: false
make_latest:
description: 'Specifies whether this release should be set as the latest release for the repository. Drafts and prereleases cannot be set as latest. Defaults to true for newly published releases. legacy specifies that the latest release should be determined based on the release creation date and higher semantic version. Padrão: true'
required: false
default: true
outputs:
id:
description: 'release id'
status:
description: 'status code response'
url:
description: 'url'
assets_url:
description: 'assets_url'
upload_url:
description: 'upload_url'
html_url:
description: 'html_url'
author:
description: 'author'
tag_name:
description: 'tag_name'
target_commitish:
description: 'target_commitish'
name:
description: 'name'
draft:
description: 'draft'
prerelease:
description: 'prerelease'
assets:
description: 'assets'
body:
description: 'body'
discussion_url:
description: 'discussion_url'
published_at:
description: 'published_at'
created_at:
description: 'created_at'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'award'
color: 'blue'