Skip to content

Just a synthetic test #11

Just a synthetic test

Just a synthetic test #11

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:
github-token: ${{ secrets.POOR_MAN_ACCESS_TOKEN }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: context.repo.owner,
repo: 'go-client',
workflow_id: 'gen-n-pub.yaml',
ref: 'master'
})