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 db3f4a9 commit 279532eCopy full SHA for 279532e
.github/labeler.yml
@@ -0,0 +1,14 @@
1
+documentation:
2
+ - docs/**
3
+
4
+examples:
5
+ - examples/**
6
7
+github actions:
8
+ - .github/workflows/*
9
10
+python:
11
+ - '**.py'
12
13
+test:
14
+ - tests/**
.github/workflows/labeler.yml
@@ -0,0 +1,22 @@
+name: Label pull request
+on:
+ - pull_request_target
+jobs:
+ label:
+ name: Label pull request
+ runs-on: ubuntu-latest
+ steps:
+ - name: Generate token
+ id: generate-token
+ uses: tibdex/[email protected]
15
+ with:
16
+ app_id: ${{ secrets.APP_ID }}
17
+ private_key: ${{ secrets.APP_PRIVATE_KEY }}
18
19
+ - name: Label pull request
20
+ uses: actions/[email protected]
21
22
+ repo-token: ${{ steps.generate-token.outputs.token }}
0 commit comments