From 9ae3816d053ce6b3ced0cdc42f67a920ae884b98 Mon Sep 17 00:00:00 2001 From: LF Barrile Date: Thu, 13 Feb 2025 09:29:35 -0300 Subject: [PATCH] feat: disable commit lint on flow to execute release on main --- .github/workflows/pre-release.yml | 32 +++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 54b89016..0c47b9d8 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -96,19 +96,19 @@ jobs: - name: Run Unit Tests run: npm test - commitlint: - runs-on: ubuntu-latest - name: Run Commitlint to check commit message format - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: '22' - - name: Install dependencies - run: npm install - - name: Run Commitlint - run: | - npx --no-install commitlint --from=HEAD~1 --to=HEAD + # commitlint: + # runs-on: ubuntu-latest + # name: Run Commitlint to check commit message format + # steps: + # - uses: actions/checkout@v4 + # with: + # fetch-depth: 0 + # - name: Set up Node.js + # uses: actions/setup-node@v3 + # with: + # node-version: '22' + # - name: Install dependencies + # run: npm install + # - name: Run Commitlint + # run: | + # npx --no-install commitlint --from=HEAD~1 --to=HEAD