[AspNetCoreInstrumentation] Incorrect value for http.route
when using razor pages and invoking the root path
#8
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 for component found in bug issue descriptions' | |
on: | |
issues: | |
types: [opened] | |
permissions: | |
issues: write | |
jobs: | |
add-labels: | |
if: ${{ !github.event.issue.pull_request }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out code | |
uses: actions/checkout@v4 | |
- name: Add labels for component found in bug issue descriptions | |
shell: pwsh | |
run: | | |
.\build\add-labels.ps1 -issueNumber $env:ISSUE_NUMBER -issueBody $env:ISSUE_BODY | |
env: | |
GH_TOKEN: ${{ github.token }} | |
ISSUE_NUMBER: ${{ github.event.issue.number }} | |
ISSUE_BODY: ${{ github.event.issue.body }} |