-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yaml
39 lines (38 loc) · 1.1 KB
/
action.yaml
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: Create Release
author: wemogy GmbH
description: Create a GitHub Release with generated release notes
branding:
color: blue
icon: code
inputs:
github-token:
description: The GitHub token used to create an authenticated client
default: ${{ github.token }}
required: true
release-version-tag:
description: The name of the tag to create the Release for
default: ${{ github.ref }}
release-title:
description: Title of the release
required: true
pre-release:
description: Indicator of whether or not is a prerelease
default: "false"
previous-version-tag:
description: The name of the previous version
default: ""
dry-run:
description: Indicator of whether or not is a dry run
default: "false"
label-issues-with:
description: Label to be added to issues (e.g. `released-dev`)
default: ""
project-number:
description: Number of the project to upsert issues
default: ""
project-status-column-name:
description: Name of the status column to upsert issues (e.g `In Progress`)
default: ""
runs:
using: "node20"
main: "dist/index.js"