mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-09 20:44:03 -08:00
15 lines
358 B
YAML
15 lines
358 B
YAML
name: Validate Commits
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
commitlint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: wagoid/commitlint-github-action@2d572ed5ea8b369af534fa21eea186a7eef07cda
|
|
with:
|
|
configFile: './.commitlintrc.yml'
|