diff --git a/.github/labeler.yml b/.github/labeler.yml deleted file mode 100644 index 79f403a9..00000000 --- a/.github/labeler.yml +++ /dev/null @@ -1,10 +0,0 @@ -# Configuration for automatic PR labeling based on file changes -# https://github.com/actions/labeler - -# CLI - Command Line Interface -"area: cli": - - changed-files: - - any-glob-to-any-file: - - 'Sources/CLI/**/*' - - 'Sources/ContainerCommands/**/*' - diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml deleted file mode 100644 index 196df1ec..00000000 --- a/.github/workflows/labeler.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: "Pull Request Labeler" - -on: - pull_request: - types: [opened] - -permissions: - contents: read - pull-requests: write - -jobs: - label: - name: Label Pull Request - if: github.repository == 'apple/container' - runs-on: ubuntu-latest - outputs: - labels-applied: ${{ steps.labeler.outputs.labels-applied }} - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - token: ${{ secrets.GITHUB_TOKEN }} - - - name: Apply labels based on file changes - id: labeler - uses: actions/labeler@v5 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - configuration-path: .github/labeler.yml - sync-labels: true - -