mirror of
https://github.com/wagoid/commitlint-github-action.git
synced 2025-11-07 08:06:54 +00:00
24 lines
630 B
YAML
24 lines
630 B
YAML
name: Commitlint
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
commitlint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- run: sed -i -E "s/(docker:.+)/Dockerfile/" ./action.yml
|
|
- run: echo -n '' > .dockerignore
|
|
- uses: ./
|
|
id: run_commitlint
|
|
- name: Show results from JSON output
|
|
if: ${{ always() }}
|
|
run: echo ${{ toJSON(steps.run_commitlint.outputs.results) }}
|
|
commitlint-pulling-from-docker-hub:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: ./
|