This repository has been archived by the owner on Apr 7, 2023. It is now read-only.
forked from mAAdhaTTah/combine-dependabot-prs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
49 lines (49 loc) · 1.41 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
47
48
49
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"
ignoreLabels:
description: "Exclude PRs with these labels (, comma separated)"
required: true
default: "nocombine"
includeLabels:
description: "Include PRs with these labels (, comma separated)"
required: false
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
prTitle:
description: "Set title of created PR"
required: true
default: "Update combined dependencies"
runs:
using: "node16"
pre: "action/pre.js"
main: "action/main.js"