From d74a6f3cd846c1aa684d003b0e67e8f39375fa50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20V=C3=A1zquez=20P=C3=BAa?= Date: Sat, 4 Apr 2020 11:42:27 +0200 Subject: [PATCH] Add labeler workflow to add labels to the PR --- .github/labeler.yml | 8 ++++++++ .github/workflows/labeler.yml | 11 +++++++++++ 2 files changed, 19 insertions(+) create mode 100644 .github/labeler.yml create mode 100644 .github/workflows/labeler.yml diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 00000000..63775358 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,8 @@ +core: + - packages/core/** + +liphe: + - packages/liphe/** + +documentation: + - "**/*.md" diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 00000000..1c8b7852 --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,11 @@ +name: "Pull Request Labeler" +on: +- pull_request + +jobs: + triage: + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v2 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" \ No newline at end of file