Skip to content

Commit 1c7ed6f

Browse files
committed
scripts: exempt 25.1 form check-pebble-dep.sh
25.1 is an innovation release and reaching EOF on August 18th. Epic: none Release note: none
1 parent b4e83ac commit 1c7ed6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/check-pebble-dep.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ 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.
20+
if [ "$BRANCH" = "release-24.2" ] || [ "$BRANCH" = "release-25.1" ]; then
21+
# Skip the release-{24.2,25.1} branches, which are frozen.
2222
continue
2323
fi
2424
PEBBLE_BRANCH="crl-$BRANCH"

0 commit comments

Comments
 (0)