forked from Kibibit/gitflow-hotfix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (31 loc) · 908 Bytes
/
action.yml
File metadata and controls
31 lines (31 loc) · 908 Bytes
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: '@kibibit/gitflow-hotfix'
description: 'Open second PR if branch is hotfix based on gitflow rules'
author: 'kibibit'
branding:
icon: git-pull-request
color: yellow
inputs:
token: # change this
required: true
description: github token to run the action against
hotfixAgainstBranch:
required: true
description: 1st branch (usually master\main)
openPrAgainstBranch:
required: true
description: 2nd branch (usually develop)
sharedLabels:
required: false
description: comma separated list of labels to add to BOTH PRs
labels:
required: false
description: comma separated list of labels to add to the PR
titlePrefix:
required: false
description: title prefix (default is [AUTO])
checkBranchPrefix:
required: false
description: prefix to test branch names against (default is 'hotfix/')
runs:
using: 'node12'
main: 'dist/index.js'