-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
28 lines (28 loc) · 938 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: Faraday Report Uploader
description: Upload reports generated in github actions directly to your running Faraday instance
author: Faraday
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.HOST }}
- ${{ inputs.USERNAME }}
- ${{ inputs.PASSWORD }}
- ${{ inputs.WORKSPACE }}
- ${{ inputs.FILES }}
inputs:
host:
description: Your faraday instance hostname like https://faraday.mycompany.com
required: true
username:
description: The faraday username used to upload the file. Use Secrets to avoid expose credentials here.
required: true
password:
description: The faraday password associated to the previous username used to upload the file. Use Secrets to avoid expose credentials here.
required: true
workspace:
description: Workspace name where report will be uploaded
required: true
files:
description: Files that will be uplodaed
required: true