forked from fossas/fossa-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
48 lines (45 loc) · 1.42 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
37
38
39
40
41
42
43
44
45
46
47
48
name: Official FOSSA Action
description: Find license compliance and security issues in your applications with FOSSA
author: Solomon Rubin
inputs:
api-key:
description: >-
Your FOSSA API key.
required: true
run-tests:
description: >-
If set to `true` FOSSA will run the `fossa test` command.
default: false
container:
description: >-
A container name or OCI image path. Set to use FOSSA's container scanning functionality. This will run `fossa container analyze` (default behavior) and `fossa container test` (if used in combination with `run-tests`).
required: false
endpoint:
description: >-
Endpoint passed to FOSSA CLI. Defaults to `app.fossa.com`.
required: false
branch:
description: >-
Override the detected FOSSA project branch. If running FOSSA analysis on a
Pull Request, as a start you can use the contexts `github.ref` or `github.ref_name`.
required: false
debug:
description: >-
Run all FOSSA commands in debug mode. Running `fossa analyze` in debug
mode will generate a debug bundle that can be uploaded as a build artifact
after this action completes.
default: false
team-name:
description: >-
FOSSA Team Name.
required: false
project-name:
description: >-
FOSSA Project Name.
required: false
runs:
using: node16
main: dist/index.js
branding:
icon: 'check-circle'
color: 'green'