Merge pull request #2763 from zcash/release/zcash_client_sqlite-0.22.… #67
This file contains hidden or 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 }} |