Skip to content

Commit

Permalink
init labeler
Browse files Browse the repository at this point in the history
  • Loading branch information
TaiJuWu committed Sep 16, 2024
1 parent 344d8a6 commit 224907c
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
clients:
- changed-files:
- any-glob-to-any-file: 'clients/**'

config:
- changed-files:
- any-glob-to-any-file: 'config/**'

connect:
- changed-files:
- any-glob-to-any-file: 'connect/**'

core:
- changed-files:
- any-glob-to-any-file: 'core/**'

raft:
- changed-files:
- any-glob-to-any-file: 'raft/**'

storage:
- changed-files:
- any-glob-to-any-file: 'storage/**'

streams:
- changed-files:
- any-glob-to-any-file: 'streams/**'

tests:
- changed-files:
- any-glob-to-any-file: 'tests/**'

tools:
- changed-files:
- any-glob-to-any-file: ['tools/**', 'trogdor/**', "vagrant/**", committer-tools/**"]

metadata:
- changed-files:
- any-glob-to-any-file: 'metadata/**'


docs:
- changed-files:
- any-glob-to-any-file: ['docs/**', "**/*.md"]

docker:
- changed-files:
- any-glob-to-any-file: 'docker/**'

server:
- changed-files:
- any-glob-to-any-file: 'server/**'

coordinator:
- changed-files:
- any-glob-to-any-file: '*coordinator*/**'

examples:
- changed-files:
- any-glob-to-any-file: 'examples/**'

benchmarks:
- changed-files:
- any-glob-to-any-file: 'jmh-benchmarks/**'
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: "Pull Request Labeler"
on:
- pull_request_target

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

0 comments on commit 224907c

Please sign in to comment.