Include pID in managed logs filename #18731
Workflow file for this run
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: 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 }}" |