Fix return type annotation of _parse_trace_id_header in Jaeger propagator #253
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: Add PR to project board | |
| on: | |
| pull_request_target: | |
| types: [opened, reopened, ready_for_review] | |
| permissions: | |
| contents: read | |
| jobs: | |
| add-to-project: | |
| name: add to project board | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.draft == false | |
| steps: | |
| # NOTE: do NOT add an actions/checkout step here. This workflow uses | |
| # pull_request_target (which has access to secrets) but must never | |
| # execute code from the fork branch. See PR #4955 for context. | |
| - uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 | |
| id: otelbot-token | |
| with: | |
| client-id: ${{ vars.OTELBOT_PYTHON_CLIENT_ID }} | |
| private-key: ${{ secrets.OTELBOT_PYTHON_PRIVATE_KEY }} | |
| - uses: actions/add-to-project@v1.0.2 | |
| with: | |
| project-url: https://github.com/orgs/open-telemetry/projects/88 | |
| github-token: ${{ steps.otelbot-token.outputs.token }} |