pack: fix minor issue with smallest transaction accounting, more metrics #1973
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: On Main Push | |
on: | |
push: | |
branches: [main] | |
jobs: | |
book: | |
uses: ./.github/workflows/book.yml | |
secrets: inherit | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
clusterfuzz: | |
uses: ./.github/workflows/clusterfuzz.yml | |
secrets: inherit | |
trigger: | |
needs: clusterfuzz | |
runs-on: ubuntu-latest | |
steps: | |
- name: dispatch solfuzz CI | |
run: | | |
curl -L \ | |
-X POST \ | |
https://api.github.com/repos/firedancer-io/solfuzz/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": "fd_main"}' |