We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ff6611 commit 95c5a50Copy full SHA for 95c5a50
.github/workflows/pr.yml
@@ -33,9 +33,18 @@ jobs:
33
--pretty=format:'* %s%n%n%b')
34
TITLE='${{ github.event.pull_request.title }}'
35
36
+ echo $TITLE
37
+ echo '---------'
38
+ echo $BODY
39
40
+ echo "${TITLE}\n${BODY}"
41
42
+
43
echo "${TITLE}\n${BODY}" > commit-message.txt
44
cat commit-message.txt
- cat commit-message.txt | npx commitlint
45
46
+ - name: Check commit message
47
+ run: cat commit-message.txt | npx commitlint
48
49
check-file-format:
50
name: Check files changes follow guidelines
0 commit comments