Skip to content

[processor/genainormalizer] OpenInference input/output message are not normalized due to flattened indexed attribute format #6058

[processor/genainormalizer] OpenInference input/output message are not normalized due to flattened indexed attribute format

[processor/genainormalizer] OpenInference input/output message are not normalized due to flattened indexed attribute format #6058

name: "Approve Pending Workflows"
on:
issue_comment:
types:
- created
permissions: read-all
jobs:
approve-workflows:
if: ${{ github.event.issue.pull_request && startsWith(github.event.comment.body, '/workflow-approve') && github.repository_owner == 'open-telemetry' }}
permissions:
actions: write
contents: read
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
id: otelbot-token
with:
app-id: ${{ vars.OTELBOT_APP_ID }}
private-key: ${{ secrets.OTELBOT_PRIVATE_KEY }}
- name: Run approve-workflows.sh
run: ./.github/workflows/scripts/approve-workflows.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ORG_TOKEN: ${{ steps.otelbot-token.outputs.token }}
PR_NUMBER: ${{ github.event.issue.number }}
COMMENT: ${{ github.event.comment.body }}
SENDER: ${{ github.event.comment.user.login }}