Merge pull request #1582 from zcash/msrv-1.77 #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |
env: | |
GH_TOKEN: ${{ github.token }} |