summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-05-21 11:41:41 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-05-21 11:41:41 +0900
commit5e55b192474d07206efff17fcba5dbe19f119c5e (patch)
tree6033efee9b3f6558dab07408d3f90160dd53aeee
parentfix(client): make emoji stand out more on reaction button (diff)
downloadmisskey-5e55b192474d07206efff17fcba5dbe19f119c5e.tar.gz
misskey-5e55b192474d07206efff17fcba5dbe19f119c5e.tar.bz2
misskey-5e55b192474d07206efff17fcba5dbe19f119c5e.zip
feat(dev): introduce Pull Request Labeler
-rw-r--r--.github/labeler.yml5
-rw-r--r--.github/workflows/labeler.yml14
2 files changed, 19 insertions, 0 deletions
diff --git a/.github/labeler.yml b/.github/labeler.yml
new file mode 100644
index 0000000000..5d4564c683
--- /dev/null
+++ b/.github/labeler.yml
@@ -0,0 +1,5 @@
+'⚙️Server':
+- packages/backend/**/*
+
+'🖥️Client':
+- packages/client/**/*
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml
new file mode 100644
index 0000000000..057208eda3
--- /dev/null
+++ b/.github/workflows/labeler.yml
@@ -0,0 +1,14 @@
+name: "Pull Request Labeler"
+on:
+- pull_request_target
+
+jobs:
+ triage:
+ permissions:
+ contents: read
+ pull-requests: write
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/labeler@v4
+ with:
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"