From f1e51fd8732a10ac7407fad2abbda0f5b6da87e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Wed, 8 Jan 2025 19:31:32 +0100 Subject: [PATCH] Disable lint-commit job that trips up SignPath runner id when skipped (#23574) Skipping the job makes SignPath's runner verification think it was run on an external system and with runner verification a strict requirement, it prevents us from doing a release --- .github/workflows/ci.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb0b2e1171..1928faf582 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,21 +111,21 @@ jobs: echo "certificate=$certificate" echo "sign=$sign" >> $GITHUB_OUTPUT echo "certificate=$certificate" >> $GITHUB_OUTPUT - lint-commit: - name: Lint Commit Message - if: github.event_name == 'pull_request' - runs-on: ubuntu-latest - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Lint Commit Messages - uses: wagoid/commitlint-github-action@v5 - with: - configFile: .commitlint.json + # lint-commit: + # name: Lint Commit Message + # if: github.event_name == 'pull_request' + # runs-on: ubuntu-latest + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # steps: + # - name: Checkout + # uses: actions/checkout@v4 + # with: + # fetch-depth: 0 + # - name: Lint Commit Messages + # uses: wagoid/commitlint-github-action@v5 + # with: + # configFile: .commitlint.json check-code-formatting: name: Check code formatting runs-on: ubuntu-latest