chore(deps): Bump OpenTelemetry.Extensions.Hosting from 1.15.3 to 1.17.0 #18
This file contains hidden or 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: pr-labeler | |
| # Auto-applies area:* labels to PRs based on changed paths. Configuration in | |
| # .github/labeler.yml. The labels must already exist in the repo Settings -> | |
| # Labels (area:azure, area:on-prem, area:core, area:infra, area:ci, area:docs); | |
| # the action will fail-soft if a label is missing. | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| label: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/labeler@v5 | |
| with: | |
| sync-labels: true |