diff --git a/.github/workflows/label-conflicts.yml b/.github/workflows/label-conflicts.yml deleted file mode 100644 index 20d699bada..0000000000 --- a/.github/workflows/label-conflicts.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Label merge conflicts - -on: - push: - branches: ["main"] - pull_request_target: - types: ["synchronize", "reopened", "opened"] - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }} - cancel-in-progress: true - -jobs: - triage-conflicts: - runs-on: ubuntu-latest - steps: - - uses: mschilde/auto-label-merge-conflicts@591722e97f3c4142df3eca156ed0dcf2bcd362bd - with: - CONFLICT_LABEL_NAME: "has conflicts" - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - MAX_RETRIES: 3 - WAIT_MS: 5000 diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml deleted file mode 100644 index 397ec3c890..0000000000 --- a/.github/workflows/labeler.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: "Pull Request Labeler" -on: [pull_request_target] - -jobs: - triage-prs: - permissions: - contents: read - pull-requests: write - runs-on: ubuntu-latest - steps: - # Uploads repository content to the runner - - uses: actions/checkout@v5 - - uses: actions/labeler@v6 - with: - # The path to the label configuration file. - configuration-path: .github/labeling-config.yml - # Whether removing labels when matching files are reverted or no longer changed by the PR - sync-labels: true