From 682a04484d99601627232cdf87ae90cebe6068b4 Mon Sep 17 00:00:00 2001 From: Adam Jolicoeur Date: Tue, 26 May 2026 09:31:11 -0400 Subject: [PATCH] chore: add automated labeler to PRs --- .github/labeler.yml | 20 ++++++++++++++++++++ .github/workflows/labeler.yml | 16 ++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 .github/labeler.yml create mode 100644 .github/workflows/labeler.yml 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