generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
34 lines (34 loc) · 1010 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
34
name: "compare-commits-action"
description: "Compare differences between two commits in a repository"
author: "Phillip Cloud"
inputs:
owner:
required: true
description: "The owner of the GitHub repository"
repo:
required: true
description: "The GitHub repository name"
basehead:
required: true
description: "The commit range to compare"
token:
required: false
description: "Access token to increase the rate limit for GitHub API requests"
include-merge-commits:
required: false
description: "Whether to show merge commits in the log"
default: "false"
sha-length:
required: false
description: "The short length of the SHA256 displayed in the output table"
default: "8"
verbose:
required: false
description: "Print the generated Markdown table to the console"
default: "false"
outputs:
differences:
description: "A markdown formatted table of differences between two commits"
runs:
using: "node20"
main: "dist/index.js"