Starting a branch build of Flex for main #736
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: 'Start a Flex image build on a git branch' | |
run-name: 'Starting a branch build of Flex for ${{ github.ref_name }}' | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
jobs: | |
start-build: | |
name: 'starting a build for branch ${{ github.ref }}' | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: 'start build' | |
uses: octokit/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
route: POST /repos/{owner}/{repo}/actions/workflows/{workflow-id}/dispatches | |
owner: opentrons | |
repo: oe-core | |
workflow-id: build-ot3-actions.yml | |
ref: ${{github.ref}} | |
inputs: | | |
{ | |
"oe-core-ref": "${{ github.ref }}", | |
"monorepo-ref": "-", | |
"infra-stage": "stage-prod" | |
} |