Add executor thread pool metrics instrumentation #378
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: Metadata Validation Check | |
| on: | |
| pull_request: | |
| paths: | |
| - 'instrumentation-docs/**' | |
| - 'instrumentation/*/metadata.yaml' | |
| - '.github/workflows/metadata-validation.yml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Set up JDK for running Gradle | |
| uses: actions/setup-java@0f481fcb613427c0f801b606911222b5b6f3083a # v5.5.0 | |
| with: | |
| distribution: temurin | |
| java-version-file: .java-version | |
| - name: Set up gradle | |
| uses: gradle/actions/setup-gradle@3f131e8634966bd73d06cc69884922b02e6faf92 # v6.2.0 | |
| with: | |
| cache-read-only: ${{ inputs.cache-read-only }} | |
| - name: Run documentation analyzer | |
| run: ./gradlew :instrumentation-docs:runAnalysis | |
| - name: Validate instrumentation task list | |
| run: ./.github/scripts/metadata-ci-validate-tasks.sh | |