Skip to content

Commit

Permalink
feat(ci): add sigfuzz CI dispatch (#589)
Browse files Browse the repository at this point in the history
Makes it so that when we push a new commit to main, it triggers the CI
setup in https://github.com/Syndica/sig-fuzz to run, build the bindings,
bundle them, and send them off to FuzzCorp.
  • Loading branch information
Rexicon226 authored Feb 28, 2025
1 parent 82b5072 commit 7d75284
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Trigger SigFuzz CI

on:
workflow_dispatch:
push:
branches: [main]

jobs:
kick_sigfuzz_ci:
runs-on: ubuntu-latest
steps:
- name: Dispatch SigFuzz CI
run: |
curl -L \
-X POST \
https://api.github.com/repos/Syndica/sig-fuzz/dispatches \
-H 'Accept: application/vnd.github.everest-preview+json' \
-H "Authorization: Bearer ${{ secrets.PAT }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
--data '{"event_type": "sig"}'

0 comments on commit 7d75284

Please sign in to comment.