MWPW-138430 - Set origin to default repo when FG send to caas (#1460) #213
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dispatch workflows | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
dispatch-dc: | |
name: Dispatch DC workflow | |
if: github.repository == 'adobecom/milo' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- uses: dorny/paths-filter@v2 | |
id: changes | |
with: | |
filters: | | |
src: | |
- 'libs/**' | |
- if: steps.changes.outputs.src == 'true' | |
name: Trigger DC Workflow | |
uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.DC_PAT }} | |
script: | | |
github.rest.actions.createWorkflowDispatch({ | |
owner: 'adobecom', | |
repo: 'dc', | |
workflow_id: 'test-milo.yml', | |
ref: 'main', | |
}) |