Update fly-colors.yml with new action input #12
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: Test Workflow | |
on: push | |
jobs: | |
Trigger-Pipeline-Action-v1-6-0: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger a Buildkite Build on Push using v1.6.0 | |
uses: buildkite/[email protected] | |
with: | |
buildkite-token: ${{ secrets.TRIGGER_BK_BUILD_TOKEN }} | |
pipeline: "lzrinc/experimental-pipeline" | |
branch: master | |
commit: HEAD | |
message: ":buildkite::github: πππ Triggered from GHA On $GITHUB_EVENT_NAME" | |
build-env-vars: '{"TRIGGERED_FROM_GHA": "true", "TPA_VERSION": "v1.6.0"}' | |
build-meta-data: '{"TRIGGERED_FROM_PR": "true"}' | |
ignore-pipeline-branch-filter: true | |
Trigger-Pipeline-Action-v2-0-0: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger a Buildkite Build on Push using v2.0.0 | |
uses: buildkite/[email protected] | |
with: | |
buildkite_api_access_token: ${{ secrets.TRIGGER_BK_BUILD_TOKEN }} | |
pipeline: "lizrabuya/kite-flying-tutorial" | |
branch: master | |
commit: HEAD | |
message: ":buildkite::github: πππ Triggered from GHA On $GITHUB_EVENT_NAME" | |
build_env_vars: '{"TRIGGERED_FROM_GHA": "true", "TPA_VERSION": "v2.0.0"}' | |
build_meta_data: '{"TRIGGERED_FROM_PR": "true"}' | |
ignore_pipeline_branch_filter: true | |
Trigger-Pipeline-Action-latest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger a Buildkite Build on Push using latest | |
uses: buildkite/trigger-pipeline-action@latest | |
with: | |
buildkite_api_access_token: ${{ secrets.TRIGGER_BK_BUILD_TOKEN }} | |
pipeline: "lizrabuya/kite-flying-tutorial" | |
branch: master | |
commit: HEAD | |
message: ":buildkite::github: πππ Triggered from GHA On $GITHUB_EVENT_NAME" | |
build_env_vars: '{"TRIGGERED_FROM_GHA": "true", "TPA_VERSION": "v2.0.0"}' | |
build_meta_data: '{"TRIGGERED_FROM_PR": "true"}' | |
ignore_pipeline_branch_filter: true | |
send_pull_request: true |