ci: buildkite release pipeline #13
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 workflow sets the Test / test status check to success in case it's a docs only PR and test.yml is not triggered | |
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks | |
name: Test # The name must be the same as in test.yml | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: # This expression needs to match the paths ignored on test.yml. | |
- '**' | |
- '!**/*.md' | |
pull_request: | |
paths-ignore: # This expression needs to match the paths ignored on test.yml. | |
- '**' | |
- '!**/*.md' | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' |