fix(deps): update module github.com/jaegertracing/jaeger-idl to v0.11.1 #10327
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: 'Request reviews from code owners of a PR' | |
| on: | |
| # pull_request_target is required to request reviewers on pull requests from | |
| # forks. This usage is safe: the checkout below takes no `ref`, so only base | |
| # branch code runs, and the elevated token is used solely to add reviewers. | |
| pull_request_target: # zizmor: ignore[dangerous-triggers] | |
| types: | |
| - opened | |
| - synchronize | |
| - ready_for_review | |
| permissions: | |
| contents: read | |
| jobs: | |
| request_codeowners_review: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read # job-level permissions replace the workflow defaults | |
| pull-requests: write | |
| if: ${{ github.repository_owner == 'open-telemetry' && github.event.pull_request.draft == false }} | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Run request_codeowners_review.sh | |
| run: ./tools/request_codeowners_review.sh | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| REPO: ${{ github.repository }} | |
| PR: ${{ github.event.number }} |