Skip to content

Commit 05e2b9f

Browse files
author
Anis Da Silva Campos
committed
lint(local): changes to pass linter
1 parent 811aaac commit 05e2b9f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

action.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
---
12
name: 'Commit message validator'
2-
description: 'Enforce angular commit message convention with minimal dependancy only git and bash.'
3+
description: >
4+
Enforce angular commit message convention with minimal dependency only git and bash.
35
author: 'Sébastien Boulle'
46
branding:
57
icon: 'check-square'
@@ -23,7 +25,9 @@ runs:
2325
shell: bash
2426

2527
- name: Validation
26-
run: ${{ github.action_path }}/check.sh ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}
28+
run: |
29+
${{ github.action_path }}/check.sh \
30+
${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}
2731
env:
2832
COMMIT_VALIDATOR_NO_JIRA: ${{ inputs.no_jira }}
2933
COMMIT_VALIDATOR_ALLOW_TEMP: ${{ inputs.allow_temp }}

0 commit comments

Comments
 (0)