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 c123892 commit 3c2478cCopy full SHA for 3c2478c
ci/lint/06_script.sh
@@ -6,8 +6,9 @@
6
7
export LC_ALL=C
8
9
+GIT_HEAD=$(git rev-parse HEAD)
10
if [ -n "$CIRRUS_PR" ]; then
- COMMIT_RANGE="$CIRRUS_BASE_SHA..HEAD"
11
+ COMMIT_RANGE="$CIRRUS_BASE_SHA..$GIT_HEAD"
12
test/lint/commit-script-check.sh $COMMIT_RANGE
13
fi
14
export COMMIT_RANGE
@@ -28,3 +29,6 @@ if [ "$CIRRUS_REPO_FULL_NAME" = "bitcoin/bitcoin" ] && [ -n "$CIRRUS_CRON" ]; th
28
29
${CI_RETRY_EXE} gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys $(<contrib/verify-commits/trusted-keys) &&
30
./contrib/verify-commits/verify-commits.py --clean-merge=2;
31
32
+
33
+echo
34
+git log --no-merges --oneline $COMMIT_RANGE
0 commit comments