Skip to content

Commit

Permalink
github: Remove reference to master branch.
Browse files Browse the repository at this point in the history
The OvS primary development branch has been renamed main
so there is no longer any need for this CI configuration
to refer to master.

Signed-off-by: Simon Horman <horms@ovn.org>
  • Loading branch information
Simon Horman committed Apr 10, 2024
1 parent b60cca7 commit dc2dc13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Expand Up @@ -307,7 +307,7 @@ jobs:
MIN_DISTANCE=1000
git remote add upstream https://github.com/openvswitch/ovs.git
git fetch upstream
for upstream_head in $(git ls-remote --heads upstream main master dpdk-latest branch-2.17 branch-[3456789]* | cut -f 1); do
for upstream_head in $(git ls-remote --heads upstream main dpdk-latest branch-2.17 branch-[3456789]* | cut -f 1); do
CURR_BASE=$(git merge-base ${upstream_head} HEAD 2>/dev/null)
if [ ${CURR_BASE} ]; then
DISTANCE=$(git log --oneline ${CURR_BASE}..HEAD | wc -l);
Expand Down

0 comments on commit dc2dc13

Please sign in to comment.