Skip to content

Commit 9fdda26

Browse files
authored
Fix conflicts (#17074)
1 parent 283afd0 commit 9fdda26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.buildkite/scripts/common/trigger-pipeline-generate-steps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ set -eo pipefail
1212
# https://github.com/elastic/ingest-dev/issues/2664
1313
# *******************************************************
1414

15-
ACTIVE_BRANCHES_URL="https://raw.githubusercontent.com/elastic/logstash/main/ci/branches.json"
15+
ACTIVE_BRANCHES_URL="https://storage.googleapis.com/artifacts-api/snapshots/branches.json"
1616
EXCLUDE_BRANCHES_ARRAY=()
1717
BRANCHES=()
1818

@@ -63,7 +63,7 @@ exclude_branches_to_array
6363
set -u
6464
set +e
6565
# pull releaseable branches from $ACTIVE_BRANCHES_URL
66-
readarray -t ELIGIBLE_BRANCHES < <(curl --retry-all-errors --retry 5 --retry-delay 5 -fsSL $ACTIVE_BRANCHES_URL | jq -r '.branches[].branch')
66+
readarray -t ELIGIBLE_BRANCHES < <(curl --retry-all-errors --retry 5 --retry-delay 5 -fsSL $ACTIVE_BRANCHES_URL | jq -r '.branches[]')
6767
if [[ $? -ne 0 ]]; then
6868
echo "There was an error downloading or parsing the json output from [$ACTIVE_BRANCHES_URL]. Exiting."
6969
exit 1

0 commit comments

Comments
 (0)