-
Notifications
You must be signed in to change notification settings - Fork 8
/
action.yml
46 lines (46 loc) · 1.27 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
37
38
39
40
41
42
43
44
45
46
name: "Combine Dependabot PRs"
description: "Combine multiple Dependabot PRs into a single PR to simplify dependency updates"
branding:
icon: "git-merge"
color: "blue"
inputs:
branchPrefix:
description: "Branch prefix to find combinable PRs based on"
required: true
default: "dependabot"
mustBeGreen:
description: "Only combine PRs that are green (status is success)"
required: true
default: true
combineBranchName:
description: "Name of the branch to combine PRs into"
required: true
default: "combined-prs"
includeLabel:
description: "Only include PRs with this label"
required: false
default: ""
ignoreLabel:
description: "Exclude PRs with this label"
required: true
default: "nocombine"
baseBranch:
description: "Branch to PR into"
required: true
default: "main"
githubToken:
description: "The GitHub token used to create an authenticated client"
default: ${{ github.token }}
required: true
openPR:
description: "Whether to open a PR with the created branch"
default: true
required: true
allowSkipped:
description: "Whether to treat skipped checks as successful"
default: false
required: false
runs:
using: "node12"
pre: "action/pre.js"
main: "action/main.js"