diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 000000000..c5d5ef7fa --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,24 @@ +aci: + - aci/**/* + +ecs: + - ecs/**/* + +cli: + - cli/**/* + +api: + - containers/**/* + - compose/**/* + - secrets/**/* + - server/**/* + - protos/**/* + +ci: + - .github/**/* + +documentation: + - docs/**/* + +metrics: + - metrics/**/* diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 000000000..c01f1380a --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,10 @@ +name: "Pull Request Labeler" +on: [pull_request] + +jobs: + triage: + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v2 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}"