Skip to content

fix: update W3CBaggagePropagator to properly handle whitespace #481

fix: update W3CBaggagePropagator to properly handle whitespace

fix: update W3CBaggagePropagator to properly handle whitespace #481

Workflow file for this run

name: Add PR to project board

Check warning on line 1 in .github/workflows/add-to-project.yml

View workflow run for this annotation

GitHub Actions / Add PR to project board

Workflow execution policy warning (evaluate mode)

On November 2, 2026, GitHub will restrict `pull_request_target` on public repositories by default. To continue allowing the event trigger, configure an Actions policy. Learn more: https://gh.io/securely-using-pull_request_target#default-policy-for-pull_request_target
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@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2
with:
project-url: https://github.com/orgs/open-telemetry/projects/88
github-token: ${{ steps.otelbot-token.outputs.token }}