-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
21 lines (21 loc) · 618 Bytes
/
action.yml
File metadata and controls
21 lines (21 loc) · 618 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: 'Get Commit Difference Count Between Two Branches'
author: "Jessica Wilson"
description: 'Returns the commit difference count between two branches, given their branch names'
inputs:
base-branch:
description: 'The name of the first branch'
required: true
default: 'master'
secondary-branch:
description: 'The name of the second branch'
required: true
default: 'development'
outputs:
commit-difference-count:
description: 'The number of commits between the base branch and the secondary branch'
runs:
using: 'node12'
main: 'index.js'
branding:
icon: 'hash'
color: 'orange'