diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 0000000000..af29289d33 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,2 @@ +backport: + - '(Mergifyio backport )' diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 0000000000..79bb73f414 --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,19 @@ +name: Labeler + +on: + pull_request_target: + types: + - opened + - reopened + +jobs: + labeler: + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + steps: + - uses: github/issue-labeler@v2.5 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" + configuration-path: .github/labeler.yml