Prototype: Automatic PR Labeler (#27015)

* prototype: automatic labeler

* fix?

* fix?
pull/27107/head
Craig Tiller 3 years ago committed by GitHub
parent d70ae71852
commit 5b7c25155e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 15
      .github/labeler.yml
  2. 12
      .github/workflows/pr-auto-tag.yaml

@ -0,0 +1,15 @@
lang/core:
- src/core/**
- include/core/**
- test/core/**
- tools/codegen/core/**
lang/c++:
- src/cpp/**
- include/grpc++/**
- include/grpcpp/**
- test/cpp/**
area/infra:
- .github/**

@ -0,0 +1,12 @@
name: PR AutoTag
on:
pull_request_target:
types: [opened, reopened, synchronized, edited]
jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v3
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
Loading…
Cancel
Save