Skip to content

Add notification workflow #9

Add notification workflow

Add notification workflow #9

Workflow file for this run

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