Skip to content

build(deps): update docker:28.0.1 docker digest to 71835c5 - autoclosed #1981

build(deps): update docker:28.0.1 docker digest to 71835c5 - autoclosed

build(deps): update docker:28.0.1 docker digest to 71835c5 - autoclosed #1981

Workflow file for this run

name: CommitLint
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
commitlint:
container:
image: commitlint/commitlint:19.8.0@sha256:958687656a296dd0b62c8d97c5856fdbc7c312ce06046a7c5980eaee4e7e69d6
runs-on: ubuntu-24.04
steps:
- run: env | sort
- name: Validate the latest commit message with commitlint
if: github.event_name == 'push'
run: echo "${{ github.event.head_commit.message }}" | npx commitlint -x @commitlint/config-conventional
- name: Validate pull request title with commitlint
if: github.event_name == 'pull_request'
run: echo "${{ github.event.pull_request.title }}" | npx commitlint -x @commitlint/config-conventional
on:
pull_request:
types:
- opened
- synchronize
- reopened
- edited
push:
branches:
- main