aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/cifuzz/actions/action.yml
diff options
context:
space:
mode:
Diffstat (limited to 'infra/cifuzz/actions/action.yml')
-rw-r--r--infra/cifuzz/actions/action.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/infra/cifuzz/actions/action.yml b/infra/cifuzz/actions/action.yml
new file mode 100644
index 00000000..11095fbf
--- /dev/null
+++ b/infra/cifuzz/actions/action.yml
@@ -0,0 +1,12 @@
+# action.yml
+name: 'build-fuzzers'
+description: "Builds an OSS-Fuzz project's fuzzers."
+inputs:
+ project-name:
+ description: 'Name of the corresponding OSS-Fuzz project.'
+ required: true
+runs:
+ using: 'docker'
+ image: 'Dockerfile'
+ env:
+ PROJECT_NAME: ${{ inputs.project-name }}