diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 0000000..ab97a32 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,17 @@ +area/ci: +- changed-files: + - any-glob-to-any-file: + - ".github/**/*" + - "install/*" +area/docs: +- changed-files: + - any-glob-to-any-file: + - "README.md" + - "CONTRIBUTING.md" + - "CONTRIBUTING-gitflow.md" +language/go: +- changed-files: + - any-glob-to-any-file: + - "meshsync/*" + - "internal/**/*" + - "pkg/**/*" \ No newline at end of file diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 0000000..143d2fb --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,11 @@ +name: "Pull Request Labeler" +on: +- pull_request_target + +jobs: + triage: + runs-on: ubuntu-24.04 + steps: + - uses: actions/labeler@v5 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}"