forked from ahmadnassri/action-dependabot-auto-merge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
40 lines (32 loc) · 1.01 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
name: Dependabot Auto Merge
description: Automatically merge Dependabot PRs when version comparison is within range
branding:
color: blue
icon: git-merge
inputs:
github-token:
description: The GitHub token used to merge the pull-request
required: true
config:
description: Path to configuration file (relative to root)
default: .github/auto-merge.yml
required: false
command:
description: The command to pass to Dependabot as a comment
default: merge
required: false
botName:
description: The bot to tag in approve/comment message. You can use this to create your own merge bot.
default: dependabot
required: false
approve:
description: Auto-approve pull-requests
default: 'true'
required: false
target:
description: The version comparison target (major, minor, patch). This is ignored if .github/auto-merge.yml exists
default: patch
required: false
runs:
using: docker
image: docker://ghcr.io/ahmadnassri/action-dependabot-auto-merge:v2