-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
35 lines (35 loc) · 951 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
29
30
31
32
33
34
35
name: 'Monorepo merge'
author: 'luisgj'
branding:
icon: 'git-pull-request'
color: 'orange'
description: 'Finds, groups and merges PRs with specific label into a selected branch'
inputs:
target-label:
description: 'Target label to fetch for PRs'
required: true
default: 'stage-ready'
repo-token:
description: 'Github token secret'
required: true
default: "SECRETTOKEN"
main-branch:
description: 'The main branch of the repo'
default: 'master'
required: true
integration-branch:
description: 'The branch to merge the grouped branches'
default: 'staging'
required: true
private-token:
description: 'The token used to push to integration branch.'
required: true
trigger-comment:
description: 'The comment that triggered the workflow.'
required: true
outputs:
temp-branch:
description: 'Temp branch with all grouped PRs.'
runs:
using: 'node12'
main: 'dist/index.js'