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 53c2f12 commit 0b04be4Copy full SHA for 0b04be4
.github/workflows/add-labels.yml
@@ -0,0 +1,16 @@
1
+name: Add Labels to PR
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, reopened, ready_for_review]
6
7
+jobs:
8
+ add-labels:
9
+ runs-on: ubuntu-latest
10
+ if: github.event.pull_request.base.ref == 'staging' || github.event.pull_request.base.ref == 'main'
11
+ steps:
12
+ - name: Add labels to PR
13
+ uses: actions-ecosystem/action-add-labels@v1
14
+ with:
15
+ github_token: ${{ secrets.GITHUB_TOKEN }}
16
+ labels: run-bittensor-sdk-tests, run-bittensor-cli-tests
0 commit comments