diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 0000000..cd8ac3f --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,20 @@ +actions: + - .github/** +dependencies: + - package-lock.json +documentation: + - docs/** + - agents/** + - CHANGELOG.md + - Integration.md + - README-EXT.md + - README.md +ios: + - ios/** +automation: + - .github/** + - .claude/** + - CLAUDE.md + - AGENTS.md + - agents/** + diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 0000000..18df89e --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,16 @@ +name: "Pull Request Labeler" + +on: +- pull_request + +jobs: + triage: + permissions: + contents: read + pull-requests: write + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v4.1.0 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" + sync-labels: true