You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fa00160 ci: Re-enable verify-commits.py check (MarcoFalke)
fa880b1 ci: Unconditionally set the global git author name in cirrys.yml (MarcoFalke)
Pull request description:
Might be useful to detect bugs in the script itself or an accidentally missed signature.
ACKs for top commit:
josibake:
ACK bitcoin@fa00160
Zero-1729:
tACK fa00160
fanquake:
untested ACK fa00160
Tree-SHA512: 8a13a67d325f2477f4088d1034f0d5e4e04937a01ee3c738435fe66394c02b9f33225529952ad331b0ba19b63ca4b2f26911cb5d264890159840cf3e09085969
Copy file name to clipboardExpand all lines: .cirrus.yml
+4-2
Original file line number
Diff line number
Diff line change
@@ -13,11 +13,13 @@ env:
13
13
base_template: &BASE_TEMPLATE
14
14
skip: $CIRRUS_REPO_FULL_NAME == "bitcoin-core/gui" && $CIRRUS_PR == "" # No need to run on the read-only mirror, unless it is a PR. https://cirrus-ci.org/guide/writing-tasks/#conditional-task-execution
15
15
merge_base_script:
16
-
- if [ "$CIRRUS_PR" = "" ]; then exit 0; fi
16
+
# Unconditionally install git (used in fingerprint_script) and set the
17
+
# default git author name (used in verify-commits.py)
0 commit comments