Skip to content

Commit ed370f3

Browse files
committed
scripts: check-pebble-dep.sh: exclude 24.2
Epic: none Release note: None
1 parent c595470 commit ed370f3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/check-pebble-dep.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ BRANCHES=$(git branch -r --format='%(refname)' \
1717

1818
EXIT_CODE=0
1919
for BRANCH in $BRANCHES; do
20+
if [ "$BRANCH" = "release-24.2" ]; then
21+
# Skip the release-24.2 branch, which is frozen.
22+
continue
23+
fi
2024
PEBBLE_BRANCH="crl-$BRANCH"
2125
DEP_SHA=$(git show "origin/$BRANCH:go.mod" |
2226
grep 'github.com/cockroachdb/pebble' |

0 commit comments

Comments
 (0)