mirror of
https://github.com/wagoid/commitlint-github-action.git
synced 2025-11-07 08:06:54 +00:00
22 lines
569 B
YAML
22 lines
569 B
YAML
name: Commitlint
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
commitlint:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- run: sed -i -E "s/([']docker:.+)/Dockerfile/" ./action.yml
|
|
- uses: ./
|
|
commitlint-with-yml-file:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- run: sed -i -E "s/([']docker:.+)/Dockerfile/" ./action.yml
|
|
- uses: ./
|
|
with:
|
|
configFile: './.commitlintrc.yml'
|