generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
23 lines (23 loc) · 819 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
name: 'Code Analyzer Translator'
description: 'Converts SFCA JSON outfile into Markdown output.'
author: 'Roopa Mohan'
inputs:
runtype:
required: false
description: "'dfa' if results are associated with a DFA run, 'simple' otherwise."
default: 'simple'
outfile-artifact-name:
required: true
description: "Artifact name used while uploading outfile."
default: "SFCA-Results"
outfile-artifact-path:
required: true
description: "Output from Code Analyzer generated using '--outfile <filename>.json' parameter. Should've been uploaded using 'actions/upload-artifact@v3'."
default: 'sfca_results.json'
code-analyzer-exit-code:
required: false
description: "Exit code generated by Code Analyzer execution."
type: integer
runs:
using: 'node16'
main: 'dist/index.js'