-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
24 lines (24 loc) · 897 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
name: 'ClusterFuzz'
description: 'GitHub Action that uploads fuzz artifacts to your ClusterFuzz installation.'
author: '@marcus-jump'
inputs:
bucket-name:
description: 'Name of the receiving bucket'
required: true
object-prefix:
description: 'Fuzz targets destination: should look like "gs://<bucket>/<objectpath>"". Action will drop artifacts at "gs://<bucket>/<object-prefix>.<datetime>.zip"'
required: true
project-id:
description: 'Google Cloud Project ID'
required: true
service-account-credentials:
description: 'Credentials for the service account that is allowed to interact with the Fuzz artifact bucket (in JSON)'
artifact-dir:
description: 'Path to directory containing fuzz targets.'
required: true
qualifier:
description: Qualifier to add to the output target name
required: false
runs:
using: 'node16'
main: 'dist/index.js'