captured span.sync attribute for ES restclient spans plugins #58
Workflow file for this run
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 / all status check to success in case it's a docs only PR and main.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: main # The name must be the same as in main.yml | |
on: | |
pull_request: | |
paths-ignore: # This expression needs to match the paths ignored on main.yml. | |
- '**' | |
- '!**/*.md' | |
- '!**/*.asciidoc' | |
permissions: | |
contents: read | |
jobs: | |
# dummy steps that allow to bypass those mandatory checks for tests | |
non-app-server-integration-tests: | |
name: Non-Application Server integration tests | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "Not required for docs"' | |
# dummy steps that allow to bypass those mandatory checks for tests | |
app-server-integration-tests: | |
name: Application Server integration tests | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "Not required for docs"' |