Update tadashiny.dcf #26
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: Triggers build-cloud-gov workflow | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
trigger-build: | |
runs-on: ubuntu-latest | |
name: Triggers build on push with desired defaults | |
steps: | |
- name: Trigger cloud.gov build with desired inputs | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
github.rest.actions.createWorkflowDispatch({ | |
owner: 'USEPA', | |
repo: 'TADAShiny', | |
workflow_id: 'build-cloud-gov.yml', | |
ref: 'develop', | |
inputs: { | |
"build_deps": true, | |
"build_bins": false, | |
} | |
}) |