From be62279f2a9b4b771566eb72bf12b7d5bad2ed73 Mon Sep 17 00:00:00 2001 From: acouch Date: Fri, 8 Nov 2024 14:07:30 -0500 Subject: [PATCH] Remove labeler.yml --- .github/labeler.yml | 25 ------------------------- .github/workflows/labeler.yml | 27 --------------------------- 2 files changed, 52 deletions(-) delete mode 100644 .github/labeler.yml delete mode 100644 .github/workflows/labeler.yml 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