Bump go.opentelemetry.io/collector/pdata from 0.60.1-0.20220923151520-96e9af35c002 to 1.14.1 in /internal/coreinternal #2429
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 Labels' | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
add-labels: | |
if: ${{ !github.event.issue.pull_request && (github.event.comment.body == '/help-wanted' || github.event.comment.body == '/good-first-issue' ) }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run update permissions | |
run: chmod +x ./.github/workflows/scripts/add-labels.sh | |
- name: Run add-labels.sh | |
run: ./.github/workflows/scripts/add-labels.sh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ISSUE: ${{ github.event.issue.number }} | |
COMMENT: ${{ github.event.comment.body }} |