implementation complete #13932
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
# When we push commits, fire off a `weave-package-updated` | |
# repository dispatch event to wandb/core | |
name: Notify wandb/core | |
on: | |
push: | |
branches: | |
- "**" | |
workflow_dispatch: | |
jobs: | |
notify-wandb-core: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Repository dispatch | |
uses: peter-evans/repository-dispatch@v2 | |
with: | |
token: ${{ secrets.WANDB_CORE_ACCESS_TOKEN }} | |
repository: wandb/core | |
event-type: weave-package-updated | |
client-payload: '{"ref_name": "${{ github.ref_name }}", "sha": "${{ github.sha }}"}' |