mirror of
https://github.com/mpv-player/mpv
synced 2025-02-17 04:58:06 +00:00
23 lines
326 B
YAML
23 lines
326 B
YAML
|
name: lint
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
- ci
|
||
|
- 'release/**'
|
||
|
pull_request:
|
||
|
branches: [master]
|
||
|
|
||
|
jobs:
|
||
|
commit-msg:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
with:
|
||
|
fetch-depth: 50
|
||
|
|
||
|
- name: Lint
|
||
|
run: |
|
||
|
./ci/lint-commit-msg.py
|