Spaces:
Running
Running
Merge pull request #484 from jlowin/labeler
Browse files- .github/labeler.yml +29 -0
- .github/workflows/labeler.yml +12 -0
.github/labeler.yml
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
documentation:
|
| 2 |
+
- changed-files:
|
| 3 |
+
- any-glob-to-any-file: "docs/**"
|
| 4 |
+
|
| 5 |
+
example:
|
| 6 |
+
- changed-files:
|
| 7 |
+
- any-glob-to-any-file:
|
| 8 |
+
- "examples/**"
|
| 9 |
+
|
| 10 |
+
tests:
|
| 11 |
+
- changed-files:
|
| 12 |
+
- any-glob-to-any-file: "tests/**"
|
| 13 |
+
|
| 14 |
+
"component: HTTP":
|
| 15 |
+
- changed-files:
|
| 16 |
+
- any-glob-to-any-file: "src/fastmcp/server/http.py"
|
| 17 |
+
|
| 18 |
+
"component: client":
|
| 19 |
+
- changed-files:
|
| 20 |
+
- any-glob-to-any-file: "src/fastmcp/client/**"
|
| 21 |
+
|
| 22 |
+
"contrib":
|
| 23 |
+
- changed-files:
|
| 24 |
+
- any-glob-to-any-file: "src/fastmcp/contrib/**"
|
| 25 |
+
|
| 26 |
+
"component: openapi":
|
| 27 |
+
- changed-files:
|
| 28 |
+
- any-glob-to-any-file:
|
| 29 |
+
- "src/**/*openapi*.py"
|
.github/workflows/labeler.yml
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: "Pull Request Labeler"
|
| 2 |
+
on:
|
| 3 |
+
- pull_request_target
|
| 4 |
+
|
| 5 |
+
jobs:
|
| 6 |
+
labeler:
|
| 7 |
+
permissions:
|
| 8 |
+
contents: read
|
| 9 |
+
pull-requests: write
|
| 10 |
+
runs-on: ubuntu-latest
|
| 11 |
+
steps:
|
| 12 |
+
- uses: actions/labeler@v5
|