Skip to content

[MWPW-158021] Update Milo README with Nala commands details (#2909) #1090

[MWPW-158021] Update Milo README with Nala commands details (#2909)

[MWPW-158021] Update Milo README with Nala commands details (#2909) #1090

Workflow file for this run

name: Dispatch workflows
on:
push:
branches:
- main
- stage
jobs:
dispatch-dc:
name: Dispatch DC workflow
if: github.repository == 'adobecom/milo'
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: changes
with:
base: ${{ github.ref }}
filters: |
src:
- 'libs/**'
- if: steps.changes.outputs.src == 'true'
name: Trigger DC Workflow
uses: actions/github-script@v7
with:
github-token: ${{ secrets.DC_PAT }}
script: |
github.rest.actions.createWorkflowDispatch({
owner: 'adobecom',
repo: 'dc',
workflow_id: 'test-milo.yml',
ref: 'stage',
inputs: {
miloBranch: '${{ github.ref_name }}'
},
})