aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/cifuzz/actions/action.yml
diff options
context:
space:
mode:
authorGravatar Leo Neat <leosneat@gmail.com>2020-01-13 15:25:12 -0800
committerGravatar jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2020-01-13 15:25:12 -0800
commit40fa9e5e9cccb5d36f3e4c4b4aa17ccbf58773e4 (patch)
tree94efa7513bbb35f62f8f72593111c3e1676fc6a3 /infra/cifuzz/actions/action.yml
parentd76fe9aeeb24b3e31741ce1573810fc17147948c (diff)
[infra] CIFuzz - Add github action to OSS-Fuzz repo (#3214)
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 }}