fix(billing): make balance optional in subscription endpoint response… #54
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 Nimbus Sync | |
| on: | |
| push: | |
| branches: [master] | |
| workflow_dispatch: # Allow manual triggering | |
| jobs: | |
| trigger-nimbus-sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger sync in supabase-nimbus | |
| uses: peter-evans/repository-dispatch@5fc4efd1a4797ddb68ffd0714a238564e4cc0e6f # v4.0.0 | |
| with: | |
| token: ${{ secrets.NIMBUS_SYNC_TOKEN }} | |
| repository: supabase/supabase-nimbus | |
| event-type: sync_from_upstream |