Skip to content

Commit 64eb603

Browse files
feat: add labeler
1 parent 55b2dd5 commit 64eb603

2 files changed

Lines changed: 26 additions & 0 deletions

File tree

.github/labeler.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
test:uipath-llamaindex:
2+
- changed-files:
3+
- any-glob-to-any-file: ['src/**/*.py']
4+
5+
test:uipath-langchain:
6+
- changed-files:
7+
- any-glob-to-any-file: ['src/**/*.py']

.github/workflows/auto-label.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Auto Label PRs
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
7+
permissions:
8+
contents: read
9+
pull-requests: write
10+
11+
jobs:
12+
label:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Label PR
16+
uses: actions/labeler@v5
17+
with:
18+
configuration-path: '.github/labeler.yml'
19+
sync-labels: true

0 commit comments

Comments
 (0)