Manually triggering a workflow rerun is handy when troubleshooting. Our
coverity-scan.yaml workflow already has a workflow_dispatch trigger.
# test PRs targeting this branch code
branches: [ "master" ]
+ # allows to run this workflow manually from the Actions tab
+ workflow_dispatch:
+
concurrency:
# Cancel ongoing tests in case of push to the same PR or staging branch,
# but let previous master commit tests complete.
push:
branches: [ "auto" ]
+ # allows to run this workflow manually from the Actions tab
+ workflow_dispatch:
+
concurrency:
# Cancel ongoing tests in case of push to staging branch.
group: ${{ github.workflow }}-${{ github.ref }}