Skip to content
name: static-analysis
on:
push:
branches: [ hz_test_html ]
workflow_dispatch:
jobs:
dispatch:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
github-token: ${{ secrets.PAT_STATIC_ANALYSIS }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'medooze',
repo: 'static-analysis',
workflow_id: 'coverity-single-repo.yml',
ref: 'master',
inputs: { repo: 'audio-codecs-node', private: false, commit: '${{ github.sha }}' }
})