mirror of
https://github.com/supabase/supabase.git
synced 2026-05-06 17:00:27 -04:00
92bdbb2f57
enforces minimal set of permissions, the same as other actions in the repo
21 lines
502 B
YAML
21 lines
502 B
YAML
name: Trigger Nimbus Sync
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
workflow_dispatch: # Allow manual triggering
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
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
|