We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 811aaac commit 05e2b9fCopy full SHA for 05e2b9f
action.yml
@@ -1,5 +1,7 @@
1
+---
2
name: 'Commit message validator'
-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.
5
author: 'Sébastien Boulle'
6
branding:
7
icon: 'check-square'
@@ -23,7 +25,9 @@ runs:
23
25
shell: bash
24
26
27
- name: Validation
- 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 }}
31
env:
32
COMMIT_VALIDATOR_NO_JIRA: ${{ inputs.no_jira }}
33
COMMIT_VALIDATOR_ALLOW_TEMP: ${{ inputs.allow_temp }}
0 commit comments