-
Notifications
You must be signed in to change notification settings - Fork 6
/
action.yml
26 lines (26 loc) · 914 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
name: 'use-herald-action'
description: 'GitHub action to add reviewers, subscribers and assignees to your PR'
branding:
icon: arrow-up-right
color: orange
inputs:
GITHUB_TOKEN:
description: 'GITHUB_TOKEN, frequently available on secrets.GITHUB_TOKEN'
required: true
rulesLocation:
description: 'Directory where the rules can be found'
required: true
base:
description: 'In case we wish to change the base commit we use to find the changeSet (default: master)'
default: 'master'
dryRun:
description: 'It will evaluate the rules but not perform the actions, the output will be available'
default: false
DEBUG:
description: 'following https://www.npmjs.com/package/debug it will use the value to increase or decrease logging'
outputs:
appliedRules:
description: 'It will report back what rules have been applied'
runs:
using: 'node12'
main: 'dist/index.js'