Kp test framework pt1 pd 2645 #335
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
#This is an inverse trigger for the Warp Tools CI workflow. A workaround because otherwise we'll have to remove it as being required for a PR. | |
#Currently there is no way to tell Github actions to only make a workflow required for a PR if it actually was triggered by the PR | |
#More info here: https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/troubleshooting-required-status-checks#handling-skipped-but-required-checks | |
#and here: https://github.com/orgs/community/discussions/13690 | |
name: Warp Tools CI | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the "develop" and "master" branch | |
# Uncomment this block and add your branch name to test without creating a PR | |
#push: | |
#branches: [ "kp_github_actions_pd-2113" ] | |
#paths-ignore: | |
# - '**/README.md' | |
pull_request: | |
branches: [ "develop", "master" ] | |
paths-ignore: | |
- 'tools/**' | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
build-for-gcr: | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' | |
build-for-acr: | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' | |