generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
29 lines (25 loc) · 941 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
name: 'SizeUp Action'
description: 'Estimate how easy a pull request will be to review'
author: 'Lérè Williams'
inputs:
token:
description: 'GitHub API token with read permissions for pull requests in this repository.'
required: true
git-diff-options:
description: |
Custom options to forward to `git diff` when retrieving the diff of the pull request that triggered this workflow.
The result of that `git diff` command will be used for evaluation with sizeup.
default: '--ignore-space-change'
configuration-file-path:
description: 'Optional path to a YAML configuration file. This will be forwarded to sizeup.'
outputs:
score:
description: 'The numeric score that the pull request received.'
category:
description: 'The descriptive score category that the pull request was assigned.'
runs:
using: node20
main: dist/index.js
branding:
icon: 'git-pull-request'
color: 'green'