-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaction.yml
25 lines (25 loc) · 883 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
name: 'SPDX Dependency Submission Action'
description: 'Upload SPDX SBOM files to the dependency graph''s dependency submission API'
inputs:
token:
description: "GitHub Personal Access Token (PAT). Defaults to PAT provided by Actions runner."
required: false
default: ${{ github.token }}
filePath:
description: 'The path to the directory containing the SPDX files to upload. Defaults to Actions working directory.'
required: false
default: '.'
filePattern:
description: 'The file name pattern for SPDX files to upload'
required: false
default: '*.spdx.json'
correlator:
description: 'The correlator property itself is the primary field used to keep independent submissions distinct.'
required: false
default: ${{ github.job }}
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'upload-cloud'
color: 'blue'