1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

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
This commit is contained in:
Michał Janiszewski
2025-01-08 19:31:32 +01:00
committed by GitHub
parent 955a0a2687
commit f1e51fd873

View File

@@ -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