Update the OpenTelemetry SDK version to 1.35.0 and remove jaeger exporter #3788
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: Issue management - remove labels as needed | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
issue_comment: | |
if: > | |
contains(github.event.issue.labels.*.name, 'needs author feedback') && | |
github.event.comment.user.login == github.event.issue.user.login | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Remove labels | |
env: | |
ISSUE_NUMBER: ${{ github.event.issue.number }} | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh issue edit --remove-label "needs author feedback" $ISSUE_NUMBER | |
gh issue edit --remove-label "stale" $ISSUE_NUMBER |