ci: print info

This commit is contained in:
Ben Grande 2023-11-06 19:26:24 +00:00
parent 6c1a7e2a96
commit e96b466e94
No known key found for this signature in database
GPG Key ID: 00C64E14F51F9E56

View File

@ -37,17 +37,15 @@ jobs:
echo ${{ github.event.after }}
echo ${{ github.event.base_ref }}
echo ${{ github.event.before }}
echo ${{ github.event.commits }}
echo ${{ github.event.commits.id }}
echo ${{ github.event.compare }}
echo ${{ github.event.ref }}
echo ${{ github.event.sender }}
- name: Gitlint
# yamllint disable-line rule:line-length
run: |
if test "${{ github.after }}" = "${{ github.sha }}" ||
test -z "${{ github.after }}"
then
gitlint --debug --commits "${{ github.sha }}"
gitlint --debug --commit "${{ github.sha }}"
else
gitlint --debug --commits "${{ github.after }}..${{ github.sha }}"
fi