-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
35 lines (35 loc) · 1.04 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
name: "Label Merge Conflicts"
description: 'Label pull requests with merge conflicts and subtle git-blob merge changes beyond those flagged by GitHub'
author: "prince-chrismc"
branding:
icon: "git-merge"
color: "red"
inputs:
conflict_label_name:
description: "label name used to marked PRs with merge conflicts"
required: true
github_token:
description: "GitHub token / secret"
required: true
max_retries:
description: "number of times to retry on a failed mergable check"
required: false
default: "5"
wait_ms:
description: "miliseconds between retries"
required: false
default: "5000"
detect_merge_changes:
description: "treat soft changes within the merge commits as conflicts and label accordingly"
required: false
default: "false"
slack_webhook_channel:
description: "the slack channel to output the message"
required: true
default: "#release-management"
slack_webhook_url:
description: "slack webhook url"
required: true
runs:
using: "node12"
main: "dist/index.js"