generated from Bullrich/parity-action-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
action.yml
33 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
name: "Auto Merge Bot"
description: "Bot which enables or disable auto-merge"
author: Bullrich
branding:
icon: git-merge
color: red
inputs:
GITHUB_TOKEN:
required: true
description: The token to access the repo information
MERGE_METHOD:
required: false
description: The merge method to use. Must be one of MERGE, SQUASH or REBASE.
default: SQUASH
SILENT:
required: false
description: If true, the bot will not post a comment on the PR.
ALLOWLIST:
required: false
description: List of users which are allowed to use the bot. Separated by commas (abc,def,ghi)
ALLOW_UNSTABLE:
required: false
description: If unstable, ready to merge, PRs can be merged. Defaults to true
UPDATE_BEFORE_MERGE:
required: false
description: If the bot should update the Pull Request Branch before enabling auto-merge
outputs:
repo:
description: 'The name of the repo in owner/repo pattern'
runs:
using: 'docker'
image: 'docker://ghcr.io/paritytech/auto-merge-bot/action:1.1.0'