Skip to content

Commit

Permalink
Add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
harryz2000 authored and murillo128 committed Oct 18, 2023
1 parent 6773134 commit 7adc53d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/static-analysis.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: static-analysis

on:
push:
branches: [ master ]

pull_request:

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 }}' }
})

0 comments on commit 7adc53d

Please sign in to comment.