Add labeler

This commit is contained in:
김선우
2025-01-29 20:50:00 +09:00
parent e47240705c
commit 4e4d7b2805
2 changed files with 34 additions and 0 deletions

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

@@ -0,0 +1,17 @@
bindings/java:
- 'bindings/java/**'
bindings/go:
- 'bindings/go/**'
bindings/python:
- 'bindings/python/**'
bindings/rust:
- 'bindings/rust/**'
bindings/wasm:
- 'bindings/wasm/**'
core:
- 'core/**'

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

@@ -0,0 +1,17 @@
name: Labeler
on:
pull_request:
types: [opened, synchronize]
jobs:
label:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/labeler@v4
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: .github/labeler.yml