Skip to content

fix: correct edit group error typo (RHCLOUD-49738) (#2391) #3786

fix: correct edit group error typo (RHCLOUD-49738) (#2391)

fix: correct edit group error typo (RHCLOUD-49738) (#2391) #3786

Workflow file for this run

name: Version
on:
pull_request:
branches:
- master
push:
branches:
- master
permissions:
contents: read
jobs:
install:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: './.github/actions/setup-environment'
- name: Install dependencies
run: npm ci
commitlint:
needs: [install]
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: './.github/actions/setup-environment'
- name: install
shell: bash
run: npm ci
- name: Validate current commit on push
shell: bash
if: github.event_name == 'push'
run: npx commitlint --last --verbose
- name: Validate PR commits
shell: bash
if: github.event_name == 'pull_request'
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose