This repository was archived by the owner on Apr 14, 2026. It is now read-only.
Merge pull request #320 from balancer/gha-biweekly-fees-1775731444 #5
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: Trigger Dune Revenue Upload | |
| on: | |
| push: | |
| branches: | |
| - biweekly-runs | |
| paths: | |
| - "fee_allocator/summaries/*.json" | |
| permissions: {} | |
| jobs: | |
| dispatch: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger dune revenue upload | |
| run: | | |
| gh api repos/${{ secrets.DUNE_UPLOAD_REPO }}/dispatches \ | |
| -f event_type=recon-updated | |
| env: | |
| GH_TOKEN: ${{ secrets.DUNE_UPLOAD_TOKEN }} |