Disable JSP compile spans by default #10
Workflow file for this run
This file contains hidden or 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: Build on test labels | |
| on: | |
| pull_request: | |
| types: | |
| - labeled | |
| - unlabeled | |
| permissions: | |
| contents: read | |
| jobs: | |
| trigger-build: | |
| # Only run if one of the test labels was added | |
| if: | | |
| github.event.label.name == 'test openj9' || | |
| github.event.label.name == 'test windows' || | |
| github.event.label.name == 'test native' | |
| uses: ./.github/workflows/build-pull-request.yml |