We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e9d60a commit 57ace8bCopy full SHA for 57ace8b
.github/labeler.yml
@@ -0,0 +1,3 @@
1
+# Add 'SDKBreakingChange' label if any changes detected within __init__.py file
2
+SDKBreakingChange:
3
+ - '**/__init__.py'
.github/workflows/label.yml
@@ -0,0 +1,17 @@
+name: "Pull Request Labeler"
+on:
+ pull_request:
4
+ paths:
5
6
+jobs:
7
+ triage:
8
+ runs-on: ubuntu-latest
9
+ permissions:
10
+ contents: write
11
+ pull-requests: write
12
+ steps:
13
+ # Add labels based on file changes using label.yml
14
+ - uses: actions/labeler@v4
15
+ with:
16
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
17
+ configuration-path: .github/labeler.yml
0 commit comments