Skip to content

Commit

Permalink
Notify internal movio repository of updates
Browse files Browse the repository at this point in the history
So that we can run internal deployments when the public code changes.
  • Loading branch information
pkqk committed Jan 25, 2024
1 parent 8950960 commit 054d44b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/movio.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Notify Movio

on:
push:
branches:
- main

jobs:
dispatch:
runs-on: ubuntu-latest
steps:
- name: Notify Movio
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.MOVIO_ACTIONS_ACCESS }}
repository: movio/bramble-movio
event-type: push
client-payload: |-
{
"repository": "${{ github.repository }}",
"ref": "${{ github.ref }}",
"ref_name": "${{ github.ref_name }}",
"sha": "${{ github.sha }}"
}

0 comments on commit 054d44b

Please sign in to comment.