-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
36 lines (31 loc) · 1.02 KB
/
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
35
36
name: 'scms check'
description: 'Checks if the repository can be used with scms'
branding:
icon: 'file-text'
color: 'blue'
inputs:
parallelity:
description: 'Parallelity. Default is 1 (process dirs and files sequentially).'
required: false
verbose:
description: 'Verbose output from renderers. Set to "true" for more verbose output'
required: false
default: 'false'
inputpath:
description: 'Path within repository to the source files'
required: false
outputbranch:
description: 'Output the results to a branch in your repository. If not set, only checks will be performed (default).'
required: false
emptycommit:
description: 'Do an empty commit if the newly generated output is not different from the previous output?'
required: false
wipeoutputbranch:
description: 'Wipe output branch using `git rm -rf` before checking in new files? Warning: history will be lost!'
required: false
default: 'false'
outputs: { }
runs:
using: 'docker'
image: 'Dockerfile'
args: []