-
Notifications
You must be signed in to change notification settings - Fork 31
/
action.yml
47 lines (47 loc) · 1.42 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
branding:
color: gray-dark
icon: git-merge
description:
'Automatically merge Pull Requests from the indicated github account.'
inputs:
GITHUB_LOGIN:
default: 'dependabot'
description: >
The GitHub login for which automatic merges are enabled. Supports
micromatch.
required: false
GITHUB_TOKEN:
description: 'A GitHub token.'
required: true
ENABLE_GITHUB_API_PREVIEW:
default: 'false'
description: >
Indicates if GitHub preview APIs can be used to access pull request fields
that provide more detailed information about the merge state.
required: false
MERGE_METHOD:
default: SQUASH
description:
'Represents available types of methods to use when merging a pull request.
One of: MERGE, STASH or REBASE'
required: false
PRESET:
description:
'Enable additional functionality to better personalize the behavior. One
of: DEPENDABOT_MINOR or DEPENDABOT_PATCH.'
required: false
ENABLED_FOR_MANUAL_CHANGES:
description:
'Enable automatic merges when changes are made to the PR by a different
author than the original one. Requires commits to be signed. One of:
"true" or "false".'
default: 'false'
required: false
MAXIMUM_RETRIES:
description: 'Maximum retry attempts to merge or get the PR information.'
default: '3'
required: false
name: 'Merge me!'
runs:
main: dist/index.js
using: node20