diff options
| author | Gerry Manoim <gmanoim@quantopian.com> | 2020-09-18 13:27:07 -0400 |
|---|---|---|
| committer | Gerry Manoim <gmanoim@quantopian.com> | 2020-09-22 14:32:29 -0400 |
| commit | 7afa1d0a5566e56c7f444ac6729784f9730bb559 (patch) | |
| tree | edaeafced7b54e348c11c04c7957308c54d141c5 /.github/workflows/labeler.yml | |
| parent | 0d2536650ff1b750a9008cfd2893dcc1db58f94f (diff) | |
| download | numpy-7afa1d0a5566e56c7f444ac6729784f9730bb559.tar.gz | |
DEV: add pr prefix labeler and prefix mapping
Diffstat (limited to '.github/workflows/labeler.yml')
| -rw-r--r-- | .github/workflows/labeler.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 000000000..99db967b3 --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,13 @@ +name: "Pull Request Labeler" +on: + pull_request_target: + types: [opened, synchronize, reopened, edited] + +jobs: + pr-labeler: + runs-on: ubuntu-latest + steps: + - name: Label the PR + uses: gerrymanoim/pr-prefix-labeler@v3 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
