Outputs and triggers
Configure GitHub Action triggers and use output variables to integrate Maestro Cloud into your CI/CD pipeline.
Triggers
on:
push:
branches: [main]
pull_request:
branches: [main]Supporting Forks (pull_request_target)
pull_request_target)on:
push:
branches: [master]
pull_request_target:
branches: [master]
jobs:
upload-to-mobile-dev:
name: Run Flows on Maestro Cloud
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }} # Checkout PR HEADAction outputs
Related content
Last updated