Skip to content

Commit

Permalink
Merge pull request #1375 from zcash/trigger-audit-aggregation
Browse files Browse the repository at this point in the history
CI: Add workflow to automatically trigger audit aggregation
  • Loading branch information
str4d authored Apr 26, 2024
2 parents 895afe5 + c2ed829 commit 081be32
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/aggregate-audits.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Aggregate audits

on:
push:
branches: main
paths:
- '.github/workflows/aggregate-audits.yml'
- 'supply-chain/audits.toml'

permissions:
contents: read

jobs:
trigger:
name: Trigger
runs-on: ubuntu-latest
steps:
- name: Trigger aggregation in zcash/rust-ecosystem
run: >
gh api repos/zcash/rust-ecosystem/dispatches
--field event_type="aggregate-audits"
--field client_payload[sha]="$GITHUB_SHA"

0 comments on commit 081be32

Please sign in to comment.