diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-05-21 11:41:41 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-05-21 11:41:41 +0900 |
| commit | 5e55b192474d07206efff17fcba5dbe19f119c5e (patch) | |
| tree | 6033efee9b3f6558dab07408d3f90160dd53aeee /.github | |
| parent | fix(client): make emoji stand out more on reaction button (diff) | |
| download | misskey-5e55b192474d07206efff17fcba5dbe19f119c5e.tar.gz misskey-5e55b192474d07206efff17fcba5dbe19f119c5e.tar.bz2 misskey-5e55b192474d07206efff17fcba5dbe19f119c5e.zip | |
feat(dev): introduce Pull Request Labeler
Diffstat (limited to '.github')
| -rw-r--r-- | .github/labeler.yml | 5 | ||||
| -rw-r--r-- | .github/workflows/labeler.yml | 14 |
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 }}" |