We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d997dc4 commit 1ba447fCopy full SHA for 1ba447f
2 files changed
action.yml
@@ -9,6 +9,7 @@ runs:
9
using: 'docker'
10
image: 'Dockerfile'
11
args:
12
+ - ${{ inputs.bibfile }}
13
- check-consistency
14
- --input=${{ inputs.bibfile }}
15
- --porcelain
entrypoint.sh
@@ -1,4 +1,10 @@
1
#!/usr/bin/env bash
2
set -o pipefail
3
+
4
+echo "# $1" >> $GITHUB_STEP_SUMMARY
5
+echo "" >> $GITHUB_STEP_SUMMARY
6
7
+shift
8
/jabref/jabkit/bin/jabkit "$@" 2>&1 | tee -a "$GITHUB_STEP_SUMMARY"
exit ${PIPESTATUS[0]}
0 commit comments