Bump go.opentelemetry.io/collector/pdata from 1.0.0-rcv0014 to 1.0.0-rcv0017 in /pkg/translator/prometheusremotewrite #4064
Workflow file for this run
This file contains 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 code owners to a PR' | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
add-owners-to-pr: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor != 'dependabot[bot]' && github.repository_owner == 'open-telemetry' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run add-codeowners-to-pr.sh | |
run: ./.github/workflows/scripts/add-codeowners-to-pr.sh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
REPO: ${{ github.repository }} | |
PR: ${{ github.event.number }} |