generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 6
/
action.yml
28 lines (28 loc) · 831 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
name: "Bump Action Workflow"
description: "Bump a version based on commit message, tag it, and push package.json update to repository"
inputs:
user:
description: "the git user to push the package.json version update"
required: false
email:
description: "the git email to push the package.json version update"
required: false
branch:
description: "the git email to push the package.json version update"
default: "master"
required: false
github_token:
description: "github access token"
required: true
unrelated:
description: "merge unrelated histories"
required: false
outputs:
version: # output will be available to future steps
description: "The version being tagged and pushed"
runs:
using: "node20"
main: "dist/index.js"
branding:
icon: "package"
color: "red"