Skip to content

Commit e832210

Browse files
committed
Ignore 8.x branch in staging DRA jobs
(cherry picked from commit 61e09d3)
1 parent e91674f commit e832210

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.buildkite/dra-release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -euo pipefail
44

55
DRA_WORKFLOW=${DRA_WORKFLOW:-snapshot}
66

7-
if [[ "$BUILDKITE_BRANCH" == "main" && "$DRA_WORKFLOW" == "staging" ]]; then
7+
if [[ ("$BUILDKITE_BRANCH" == "main" || "$BUILDKITE_BRANCH" == *.x) && "$DRA_WORKFLOW" == "staging" ]]; then
88
exit 0
99
fi
1010

0 commit comments

Comments
 (0)