forked from appsembler/action-conflict-counter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
33 lines (30 loc) · 974 Bytes
/
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: 'Merge Conflict Counter'
description: 'Check if there are any unresolved merge conflicts'
branding:
icon: 'git-merge'
color: 'gray-dark'
inputs:
local_base_branch:
description: 'Will be used to calculate the new conflicts the pull request / branch introduces.'
required: true
default: 'main'
upstream_repo:
description: 'Upstream repository to count conflicts against.'
required: true
upstream_branches:
description: 'Upstream repo branches (comma seperated) to calculate conflicts against.'
required: true
default: 'main'
current_git_branch:
description: 'Override the github branch for advanced usage.'
required: false
current_git_repo:
description: 'Override the github repo for advanced usage.'
required: false
exclude_paths:
description: 'Comma separated list of paths to exclude from counting the conflicts.'
required: false
default: ''
runs:
using: 'docker'
image: 'Dockerfile'