diff --git a/.github/pr-labeler.yml b/.github/pr-labeler.yml new file mode 100644 index 00000000..d447fa9d --- /dev/null +++ b/.github/pr-labeler.yml @@ -0,0 +1,12 @@ +--- +feat: feat/* +fix: fix/* +docs: docs/* +style: style/* +refactor: refactor/* +perf: perf/* +test: test/* +build: build/* +ci: ci/* +chore: chore/* +revert: revert/* diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml new file mode 100644 index 00000000..1976b4bb --- /dev/null +++ b/.github/workflows/pr-labeler.yml @@ -0,0 +1,11 @@ +--- +name: Pull Request Labeler +on: + pull_request: +jobs: + pr-labeler: + runs-on: ubuntu-latest + steps: + - uses: TimonVS/pr-labeler-action@v3 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}