Skip to content

Add notification workflow #1

Add notification workflow

Add notification workflow #1

Workflow file for this run

name: Notify dependent api clients
on:
push:
branches: [ "master" ]
workflow_dispatch:
jobs:
notify-go-client:
name: Notify onpremless/go-client
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
with:
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'onpremless',
repo: 'go-client',
workflow_id: 'gen-n-pub.yaml',
ref: 'master'
})