Skip to content

Commit 5d2ff74

Browse files
committed
Ignore main branch in staging DRA jobs
1 parent da59669 commit 5d2ff74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.buildkite/dra.sh

Lines changed: 1 addition & 1 deletion
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" == *.x && "$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)