Enabling PR auto-labeling (#15020)

* Create labeler.yml

Creating the initial label mappings

* Adding the auto-labeler workflow
This commit is contained in:
Artak 2019-10-15 13:24:08 -07:00 committed by GitHub
parent c7972d45f8
commit d40fd322d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

6
.github/labeler.yml vendored Normal file
View File

@ -0,0 +1,6 @@
area-mvc:
- src/ProjectTemplates/**/*
- src/Razor/**/*
area-blazor:
- src/Components/**/*

11
.github/workflows/labeler.yml vendored Normal file
View File

@ -0,0 +1,11 @@
name: "Pull Request Labeler"
on:
- pull_request
jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v2
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"