diff --git a/.github/labeler.yaml b/.github/labeler.yaml new file mode 100644 index 0000000000..4837ece38d --- /dev/null +++ b/.github/labeler.yaml @@ -0,0 +1,21 @@ +test: + - test/**/* + +documentation: + - www/**/* + - ./**/*.md + +providers: + - src/providers/**/* + - www/docs/configuration/providers.md + - test/integration/**/* + +adapters: + - src/adapters/**/* + - www/docs/schemas/adapters.md + +databases: + - www/docs/schemas/*.md + - test/docker/databases/**/* + - www/docs/configuration/databases.md + - test/fixtures/**/* \ No newline at end of file diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 0000000000..3ff1d63fb2 --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,12 @@ +name: "Pull Request Labeler" +on: +- pull_request_target + +jobs: + triage: + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@main + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" + sync-labels: true \ No newline at end of file