From 1d8060f676e6cc51eb032d29af6b11645ed84efd Mon Sep 17 00:00:00 2001 From: Yuta Azumi Date: Sat, 17 Oct 2020 19:58:20 +0900 Subject: [PATCH] add auto labeler --- .github/label.yml | 2 ++ .github/workflows/autolabeler.yml | 15 +++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 .github/label.yml create mode 100644 .github/workflows/autolabeler.yml diff --git a/.github/label.yml b/.github/label.yml new file mode 100644 index 00000000..7b26b401 --- /dev/null +++ b/.github/label.yml @@ -0,0 +1,2 @@ +japanese-translation: + - "**" \ No newline at end of file diff --git a/.github/workflows/autolabeler.yml b/.github/workflows/autolabeler.yml new file mode 100644 index 00000000..1a9f0653 --- /dev/null +++ b/.github/workflows/autolabeler.yml @@ -0,0 +1,15 @@ + +name: Labeler for japanese-translation +on: + pull_request: + branches: + - japanese-translation + +jobs: + label: + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v2 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" + configuration-path: ".github/label.yml" \ No newline at end of file