Compare commits

..

5 Commits

Author SHA1 Message Date
str4d bbc14b318a
Merge 76131db25a into de24462993 2024-04-27 12:58:12 -03:00
Daira-Emma Hopwood de24462993
Merge pull request #1376 from zcash/fix-audit-aggregation-workflow
CI: Add explicit token to GitHub CLI usage
2024-04-27 10:03:07 +01:00
Jack Grigg e4c51c30f6 CI: Add explicit token to GitHub CLI usage 2024-04-26 20:08:20 +00:00
str4d 081be32443
Merge pull request #1375 from zcash/trigger-audit-aggregation
CI: Add workflow to automatically trigger audit aggregation
2024-04-26 21:05:51 +01:00
Jack Grigg c2ed829ec5 CI: Add workflow to automatically trigger audit aggregation 2024-04-26 19:15:33 +00:00
1 changed files with 24 additions and 0 deletions

24
.github/workflows/aggregate-audits.yml vendored Normal file
View File

@ -0,0 +1,24 @@
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 }}