We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c15acd commit bdcd4dbCopy full SHA for bdcd4db
tools/ci.sh
@@ -14,10 +14,10 @@ ulimit -n 1024
14
15
function ci_commit_formatting_run {
16
git remote add upstream https://github.com/Infineon/XMC-for-Arduino.git
17
- git fetch --depth=100 upstream main
+ git fetch --depth=100 upstream master
18
# If the common ancestor commit hasn't been found, fetch more.
19
- git merge-base upstream/main HEAD || git fetch upstream main
20
- # For a PR, upstream/main..HEAD ends with a merge commit into main, exclude that one.
21
- python tools/verifygitlog.py -v upstream/main..HEAD --no-merges
+ git merge-base upstream/master HEAD || git fetch upstream master
+ # For a PR, upstream/master..HEAD ends with a merge commit into master, exclude that one.
+ python tools/verifygitlog.py -v upstream/master..HEAD --no-merges
22
}
23
0 commit comments