Skip to content

Commit

Permalink
Merge pull request #514 from Okabe-Junya/fix-513
Browse files Browse the repository at this point in the history
feat: add labeler actions
  • Loading branch information
Okabe-Junya authored Feb 28, 2024
2 parents 7bc8ff8 + e3e26fe commit 040ae80
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 0 deletions.
80 changes: 80 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
area/github-management:
- changed-files:
- any-glob-to-any-file:
- ".github/**"

area/documentation:
- changed-files:
- any-glob-to-any-file:
- "docs/*.md"
- "docs/*.txt"

area/misc:
- changed-files:
- any-glob-to-any-file:
- "misc/**"

area/c:
- changed-files:
- any-glob-to-any-file:
- "c/**"

area/cpp:
- changed-files:
- any-glob-to-any-file:
- "cpp/**"

area/java:
- changed-files:
- any-glob-to-any-file:
- "java/**"

area/kubernetes:
- changed-files:
- any-glob-to-any-file:
- "k8s/**"

area/lisp:
- changed-files:
- any-glob-to-any-file:
- "lisp/**"

area/node:
- changed-files:
- any-glob-to-any-file:
- "node/**"

area/ocaml:
- changed-files:
- any-glob-to-any-file:
- "ocaml/**"

area/python:
- changed-files:
- any-glob-to-any-file:
- "python/**"

area/ruby:
- changed-files:
- any-glob-to-any-file:
- "ruby/**"

area/rust:
- changed-files:
- any-glob-to-any-file:
- "rust/**"

area/terraform:
- changed-files:
- any-glob-to-any-file:
- "terraform/**"

area/typescript:
- changed-files:
- any-glob-to-any-file:
- "ts/**"

area/utils:
- changed-files:
- any-glob-to-any-file:
- "utils/**"
12 changes: 12 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: labeler

on: pull_request_target

jobs:
triage:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5

0 comments on commit 040ae80

Please sign in to comment.