diff --git a/.github/labeler.yml b/.github/labeler.yml deleted file mode 100644 index 3435554e0..000000000 --- a/.github/labeler.yml +++ /dev/null @@ -1,25 +0,0 @@ -# -# Pull request label rules. -# -# Runs in action pull-request-labeler.yml. -# -# See https://github.com/marketplace/actions/labeler -# -# Labels for programming languages. - -- any: - - changed-files: - - javascript: ["**/*.js", "**/*.jsx"] - - typescript: ["**/*.ts", "**/*.tsx"] - - python: ["**/*.py"] - - terraform: ["**/*.tf"] - - shell: ["**/*.sh"] - - api: ["api/**/*"] - - frontend: ["frontend/**/*"] - - analytics: ["analytics/**/*"] - - ci/cd: [".github/workflows/**/*", "bin/**/*", "**/*/Makefile"] - - documentation: ["documentation/**/*", "**/*.md"] - - infra: ["infra/**/*"] - - database: ["api/src/db/**/*"] - - openapi: ["api/openapi.generated.yaml"] - - storybook: ["frontend/stories/**/*", "frontend/.storybook/**/*"] diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml deleted file mode 100644 index 38fd45277..000000000 --- a/.github/workflows/labeler.yml +++ /dev/null @@ -1,27 +0,0 @@ -# -# GitHub action to add labels to pull requests. -# -# Label rules are configured in .github/labeler.xml. -# -# See https://github.com/marketplace/actions/labeler -# - -name: Pull Request Labeler - -on: - pull_request_target: - types: [opened, reopened, synchronize] - -jobs: - label: - name: Labeler - permissions: - contents: read - pull-requests: write - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 # Uploads repository content to the runner - with: - sparse-checkout: | - .github - - uses: actions/labeler@v5