mirror of
https://github.com/scratchfoundation/scratch-l10n.git
synced 2024-12-22 21:52:35 -05:00
14 lines
342 B
YAML
14 lines
342 B
YAML
|
name: Lint commit messages
|
||
|
on: [pull_request]
|
||
|
|
||
|
concurrency:
|
||
|
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
|
||
|
cancel-in-progress: true
|
||
|
|
||
|
jobs:
|
||
|
commitlint:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- uses: wagoid/commitlint-github-action@v5
|