I want to trigger a workflow that deploys the build. I want to make sure of the following:
CI
workflow is completed- branch is
develop
- there are some changes in
src/**
on:
workflow_run:
workflows: ['CI']
branches: [develop]
paths: ['src/**']
types:
- completed
It seems the above approach is not supported , is there any other way?