Files
component-detection-depende…/action.yml
T

22 lines
697 B
YAML
Raw Normal View History

2022-10-07 14:01:51 -07:00
name: 'SPDX to dependency graph action'
2022-10-07 14:04:12 -07:00
description: 'Upload SPDX SBOM files to the dependency graph''s dependency submission API'
2022-08-25 09:12:00 -07:00
inputs:
2022-10-04 09:44:26 -07:00
token:
description: "GitHub Personal Access Token (PAT). Defaults to PAT provided by Actions runner."
required: false
default: ${{ github.token }}
2022-08-25 09:21:59 -07:00
filePath:
description: 'The path to the directory containing the SPDX files to upload. Defaults to Actions working directory.'
required: false
2022-08-25 11:50:14 -07:00
default: '.'
2022-08-25 09:21:59 -07:00
filePattern:
description: 'The file name pattern for SPDX files to upload'
required: false
default: '*.spdx.json'
2022-08-25 09:12:00 -07:00
runs:
using: 'node16'
main: 'dist/index.js'
2022-08-25 11:50:14 -07:00
branding:
icon: 'upload-cloud'
color: 'blue'