We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62fd0fb commit a2b7754Copy full SHA for a2b7754
.buildkite/scripts/validate-transport-version-backport.sh
@@ -1,6 +1,11 @@
1
#!/bin/bash
2
set -euo pipefail
3
4
+if [[ "${BUILDKITE_PULL_REQUEST_BASE_BRANCH}" == "main" ]]; then
5
+ # Don't run on PRs targeting main
6
+ exit 0
7
+fi
8
+
9
echo "--- Looking for transport version changes"
10
11
# Get any changes in this pull request to transport definitions
0 commit comments