diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 00000000000..399e4c484b0 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,4 @@ +# Add 'AnyChange' label to any changes within the entire repository +Localization: +- changed-files: + - any-glob-to-any-file: 'src/locales/**/*' diff --git a/.github/workflows/label-manager.yml b/.github/workflows/label-manager.yml new file mode 100644 index 00000000000..8722677a08b --- /dev/null +++ b/.github/workflows/label-manager.yml @@ -0,0 +1,12 @@ +name: "Pull Request Label Manager" +on: +- pull_request_target + +jobs: + labeler: + permissions: + contents: read + pull-requests: write + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v5 \ No newline at end of file