From 090572c80103e2f5f0ce03b2d68f9f60f9b42b69 Mon Sep 17 00:00:00 2001 From: Carles Cufi Date: Mon, 21 Nov 2022 15:07:00 +0100 Subject: [PATCH] github: compliance: Remove maintainers check The assigner.yml workflow already performs the same checks. Signed-off-by: Carles Cufi --- .github/workflows/compliance.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.github/workflows/compliance.yml b/.github/workflows/compliance.yml index c0fc8c4e4b3..84953a33685 100644 --- a/.github/workflows/compliance.yml +++ b/.github/workflows/compliance.yml @@ -3,22 +3,6 @@ name: Compliance Checks on: pull_request jobs: - maintainer_check: - runs-on: ubuntu-20.04 - name: Check MAINTAINERS file - steps: - - name: Checkout the code - uses: actions/checkout@v3 - with: - ref: ${{ github.event.pull_request.head.sha }} - fetch-depth: 0 - - name: Run Maintainers Script - id: maintainer - env: - BASE_REF: ${{ github.base_ref }} - run: | - python3 ./scripts/get_maintainer.py path CMakeLists.txt - check_compliance: runs-on: ubuntu-20.04 name: Run compliance checks on patch series (PR)