-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
36 lines (36 loc) · 1.16 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
name: Release Action
description: GitHub Action to automatically release packages using lerna or semantic-release
author: juliendargelos
inputs:
github_token:
description: GitHub Token used to create the release on GitHub and publish on GitHub registry.
required: true
npm_token:
description: NPM token with publish permission. If not provided, publishing to npm registry will be skipped.
required: false
publish:
description: Enable or disable publishing to package registries. When set to false, releases are only created on GitHub.
default: true
required: false
push:
description: Enable or disable pushing changes made by the action.
default: true
required: false
name:
description: User name to use when pushing to GitHub.
default: github-actions[bot]
required: false
email:
description: Email to use when pushing to GitHub.
default: github-actions[bot]@users.noreply.github.com
required: false
message:
description: Commit message to use when bumping package.json.
default: 'ci(release): %s'
required: false
runs:
using: node12
main: dist/index.js
branding:
icon: package
color: purple