Skip to content

Kevin/crashtracking windows #18423

Kevin/crashtracking windows

Kevin/crashtracking windows #18423

name: Label PRs
on:
- pull_request
jobs:
add-labels:
runs-on: ubuntu-latest
permissions:
contents: read
issues: write # Update labels on PRs (might not be necessary, but we call the UpdateIssue API so...)
pull-requests: write # Update labels on PRs
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.100'
- name: "Add labels"
run: ./tracer/build.sh AssignLabelsToPullRequest
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
PullRequestNumber: "${{ github.event.pull_request.number }}"