generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 6
/
action.yml
28 lines (28 loc) · 986 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
name: 'pivotal-lint'
description: 'Add pivotal story details to pull requests'
author: 'cleartax'
inputs:
github-token:
description: 'Token used to update PR description and add labels. Can be passed in using {{ secrets.GITHUB_TOKEN }}'
required: true
pivotal-token:
description: 'API Token used to fetch Pivotal Story information. Must have read access to your PivotalTracker Projects.'
required: true
skip-branches:
description: 'A regex to ignore running on certain branches, like production etc.'
required: false
default: ''
skip-comments:
description: 'A boolean if set to true, will skip adding lint comments for PR title.'
required: false
default: false
pr-threshold:
description: 'An `Integer` based on which pivotal-lint add a comment discouraging huge PRs. Is disabled by `skip-comments`'
required: false
default: 800
runs:
using: 'node12'
main: 'lib/index.js'
branding:
icon: 'check-square'
color: 'blue'