Skip to content

Commit af632a6

Browse files
craig[bot]jbowens
andcommitted
Merge #151479
151479: scripts: exempt 25.1 form check-pebble-dep.sh r=jbowens a=jbowens 25.1 is an innovation release and reaching EOL on August 18th. Epic: none Release note: none Co-authored-by: Jackson Owens <[email protected]>
2 parents a16cf4e + 1c7ed6f commit af632a6

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)