From 75866082467cd39354dcf7b707421ee27e6fc4c5 Mon Sep 17 00:00:00 2001 From: "fr4nc1sc0.r4m0n" Date: Fri, 24 Jul 2026 11:43:57 +0200 Subject: [PATCH 1/9] Trigger ingest-dev release pipelines from version-bump automation. Replace the placeholder block with triggers to ingest-dev minor/major and patch release pipelines, and add DRA artifact polling after a successful bump. --- .buildkite/pipeline.version-bump.yml | 93 +++++++++++++++++++--------- 1 file changed, 64 insertions(+), 29 deletions(-) diff --git a/.buildkite/pipeline.version-bump.yml b/.buildkite/pipeline.version-bump.yml index 09932b41eb2..3b2d2930895 100644 --- a/.buildkite/pipeline.version-bump.yml +++ b/.buildkite/pipeline.version-bump.yml @@ -4,40 +4,75 @@ notify: - "#ingest-notifications" message: " Version bump to ${NEW_VERSION} — ${BUILDKITE_BUILD_URL}" if: (build.branch == 'main' || build.branch =~ /^[0-9]+\.[0-9x]+\$/) && (build.state == 'passed' || build.state == 'failed') - - slack: - channels: - - "#ingest-notifications" - message: | - - 🚦 Pipeline waiting to be unblocked 🚦 - Repo: `${REPO}` - - New version: `${NEW_VERSION}` - Branch: `${BRANCH}` - Workflow: `${WORKFLOW}` - ${BUILDKITE_BUILD_URL} - if: build.state == "blocked" steps: - # TODO: replace steps with branch creation logic - - block: "Placeholder blocked step" - prompt: | - Unblock when your team is ready to proceed. + # Phase 3: trigger ingest-dev release automation for this repository only. + # Orchestrator env: NEW_VERSION, BRANCH, REPO, WORKFLOW (patch|minor|major). + - trigger: ingest-dev-pipeline-release-minor-major + key: bump-version-minor-major + label: ":rocket: Trigger ingest-dev minor/major release" + if: build.env("WORKFLOW") == "minor" || build.env("WORKFLOW") == "major" + build: + branch: "main" + message: "Version bump elastic-agent to ${NEW_VERSION} (${WORKFLOW})" + meta_data: + REPOSITORY: "elastic-agent" + RELEASE_TYPE: "${WORKFLOW}" + CURRENT_RELEASE: "${NEW_VERSION}" + DRY_RUN: "false" + DISABLE_DEV_ISSUE: "true" + DISABLE_NOTIFICATIONS: "false" + DISABLE_BRANCH_CREATION: "false" + DISABLE_PREPARE_NEXT: "false" + REVIEWERS: "elastic/elastic-agent-release" + DEV_ISSUE_URL: "https://github.com/elastic/dev/issues/0" - Trigger parameters: - - NEW_VERSION: ${NEW_VERSION} - - BRANCH: ${BRANCH} - - WORKFLOW: ${WORKFLOW} - key: block-get-dra-artifacts - blocked_state: running + - trigger: ingest-dev-pipeline-release-patch + key: bump-version-patch + label: ":rocket: Trigger ingest-dev patch release" + if: build.env("WORKFLOW") == "patch" + build: + branch: "main" + message: "Version bump elastic-agent to ${NEW_VERSION} (patch)" + meta_data: + REPOSITORY: "elastic-agent" + CURRENT_RELEASE: "${NEW_VERSION}" + DRY_RUN: "false" + DISABLE_DEV_ISSUE: "true" + DISABLE_NOTIFICATIONS: "false" + DISABLE_RELEASE_PREPARE: "false" + DISABLE_PREPARE_NEXT: "false" + REVIEWERS: "elastic/elastic-agent-release" + DEV_ISSUE_URL: "https://github.com/elastic/dev/issues/0" - - label: "Create branch for version bump" - key: branch-for-version-bump - depends_on: block-get-dra-artifacts + - label: "Fetch DRA Artifacts" + key: fetch-dra-artifacts + depends_on: + - bump-version-minor-major + - bump-version-patch agents: image: docker.elastic.co/release-eng/wolfi-build-essential-release-eng:latest - cpu: 500m - memory: 1Gi + cpu: 250m + memory: 512Mi ephemeralStorage: 1Gi command: - - echo "Placeholder" + - echo "Starting DRA artifacts retrieval..." + timeout_in_minutes: 240 + retry: + automatic: + - exit_status: "*" + limit: 2 + manual: + permit_on_passed: true + + plugins: + - elastic/json-watcher#v1.0.0: + url: "https://artifacts-staging.elastic.co/elastic-agent-package/latest/${BRANCH}.json" + field: ".version" + expected_value: "${NEW_VERSION}" + polling_interval: "30" + - elastic/json-watcher#v1.0.0: + url: "https://storage.googleapis.com/elastic-artifacts-snapshot/elastic-agent-package/latest/${BRANCH}.json" + field: ".version" + expected_value: "${NEW_VERSION}-SNAPSHOT" + polling_interval: "30" From 2d37a801fe5566246ec50f9f9bcd3a7845a7146f Mon Sep 17 00:00:00 2001 From: "fr4nc1sc0.r4m0n" Date: Fri, 24 Jul 2026 12:50:20 +0200 Subject: [PATCH 2/9] Document ingest-dev trigger target for the version-bump block step. --- .buildkite/pipeline.version-bump.yml | 93 +++++++++------------------- 1 file changed, 29 insertions(+), 64 deletions(-) diff --git a/.buildkite/pipeline.version-bump.yml b/.buildkite/pipeline.version-bump.yml index 3b2d2930895..ac5f6f76241 100644 --- a/.buildkite/pipeline.version-bump.yml +++ b/.buildkite/pipeline.version-bump.yml @@ -4,75 +4,40 @@ notify: - "#ingest-notifications" message: " Version bump to ${NEW_VERSION} — ${BUILDKITE_BUILD_URL}" if: (build.branch == 'main' || build.branch =~ /^[0-9]+\.[0-9x]+\$/) && (build.state == 'passed' || build.state == 'failed') + - slack: + channels: + - "#ingest-notifications" + message: | + + 🚦 Pipeline waiting to be unblocked 🚦 + Repo: `${REPO}` + + New version: `${NEW_VERSION}` + Branch: `${BRANCH}` + Workflow: `${WORKFLOW}` + ${BUILDKITE_BUILD_URL} + if: build.state == "blocked" steps: - # Phase 3: trigger ingest-dev release automation for this repository only. - # Orchestrator env: NEW_VERSION, BRANCH, REPO, WORKFLOW (patch|minor|major). - - trigger: ingest-dev-pipeline-release-minor-major - key: bump-version-minor-major - label: ":rocket: Trigger ingest-dev minor/major release" - if: build.env("WORKFLOW") == "minor" || build.env("WORKFLOW") == "major" - build: - branch: "main" - message: "Version bump elastic-agent to ${NEW_VERSION} (${WORKFLOW})" - meta_data: - REPOSITORY: "elastic-agent" - RELEASE_TYPE: "${WORKFLOW}" - CURRENT_RELEASE: "${NEW_VERSION}" - DRY_RUN: "false" - DISABLE_DEV_ISSUE: "true" - DISABLE_NOTIFICATIONS: "false" - DISABLE_BRANCH_CREATION: "false" - DISABLE_PREPARE_NEXT: "false" - REVIEWERS: "elastic/elastic-agent-release" - DEV_ISSUE_URL: "https://github.com/elastic/dev/issues/0" + # Replace this block with triggers to ingest-dev-pipeline-release-minor-major / ingest-dev-pipeline-release-patch (elastic/observability-robots#3404). + - block: "Placeholder blocked step" + prompt: | + Unblock when your team is ready to proceed. - - trigger: ingest-dev-pipeline-release-patch - key: bump-version-patch - label: ":rocket: Trigger ingest-dev patch release" - if: build.env("WORKFLOW") == "patch" - build: - branch: "main" - message: "Version bump elastic-agent to ${NEW_VERSION} (patch)" - meta_data: - REPOSITORY: "elastic-agent" - CURRENT_RELEASE: "${NEW_VERSION}" - DRY_RUN: "false" - DISABLE_DEV_ISSUE: "true" - DISABLE_NOTIFICATIONS: "false" - DISABLE_RELEASE_PREPARE: "false" - DISABLE_PREPARE_NEXT: "false" - REVIEWERS: "elastic/elastic-agent-release" - DEV_ISSUE_URL: "https://github.com/elastic/dev/issues/0" + Trigger parameters: + - NEW_VERSION: ${NEW_VERSION} + - BRANCH: ${BRANCH} + - WORKFLOW: ${WORKFLOW} + key: block-get-dra-artifacts + blocked_state: running - - label: "Fetch DRA Artifacts" - key: fetch-dra-artifacts - depends_on: - - bump-version-minor-major - - bump-version-patch + - label: "Create branch for version bump" + key: branch-for-version-bump + depends_on: block-get-dra-artifacts agents: image: docker.elastic.co/release-eng/wolfi-build-essential-release-eng:latest - cpu: 250m - memory: 512Mi + cpu: 500m + memory: 1Gi ephemeralStorage: 1Gi command: - - echo "Starting DRA artifacts retrieval..." - timeout_in_minutes: 240 - retry: - automatic: - - exit_status: "*" - limit: 2 - manual: - permit_on_passed: true - - plugins: - - elastic/json-watcher#v1.0.0: - url: "https://artifacts-staging.elastic.co/elastic-agent-package/latest/${BRANCH}.json" - field: ".version" - expected_value: "${NEW_VERSION}" - polling_interval: "30" - - elastic/json-watcher#v1.0.0: - url: "https://storage.googleapis.com/elastic-artifacts-snapshot/elastic-agent-package/latest/${BRANCH}.json" - field: ".version" - expected_value: "${NEW_VERSION}-SNAPSHOT" - polling_interval: "30" + - echo "Placeholder" From a3298f53fc8bab8a8b293611f999f19ffccb385a Mon Sep 17 00:00:00 2001 From: "fr4nc1sc0.r4m0n" Date: Fri, 24 Jul 2026 14:07:08 +0200 Subject: [PATCH 3/9] Trigger ingest-dev release pipelines from version-bump automation. Replace the manual block with triggers to ingest-dev minor/major and patch release pipelines, then poll DRA artifacts after a successful bump. --- .buildkite/pipeline.version-bump.yml | 93 +++++++++++++++++++--------- 1 file changed, 64 insertions(+), 29 deletions(-) diff --git a/.buildkite/pipeline.version-bump.yml b/.buildkite/pipeline.version-bump.yml index ac5f6f76241..3b2d2930895 100644 --- a/.buildkite/pipeline.version-bump.yml +++ b/.buildkite/pipeline.version-bump.yml @@ -4,40 +4,75 @@ notify: - "#ingest-notifications" message: " Version bump to ${NEW_VERSION} — ${BUILDKITE_BUILD_URL}" if: (build.branch == 'main' || build.branch =~ /^[0-9]+\.[0-9x]+\$/) && (build.state == 'passed' || build.state == 'failed') - - slack: - channels: - - "#ingest-notifications" - message: | - - 🚦 Pipeline waiting to be unblocked 🚦 - Repo: `${REPO}` - - New version: `${NEW_VERSION}` - Branch: `${BRANCH}` - Workflow: `${WORKFLOW}` - ${BUILDKITE_BUILD_URL} - if: build.state == "blocked" steps: - # Replace this block with triggers to ingest-dev-pipeline-release-minor-major / ingest-dev-pipeline-release-patch (elastic/observability-robots#3404). - - block: "Placeholder blocked step" - prompt: | - Unblock when your team is ready to proceed. + # Phase 3: trigger ingest-dev release automation for this repository only. + # Orchestrator env: NEW_VERSION, BRANCH, REPO, WORKFLOW (patch|minor|major). + - trigger: ingest-dev-pipeline-release-minor-major + key: bump-version-minor-major + label: ":rocket: Trigger ingest-dev minor/major release" + if: build.env("WORKFLOW") == "minor" || build.env("WORKFLOW") == "major" + build: + branch: "main" + message: "Version bump elastic-agent to ${NEW_VERSION} (${WORKFLOW})" + meta_data: + REPOSITORY: "elastic-agent" + RELEASE_TYPE: "${WORKFLOW}" + CURRENT_RELEASE: "${NEW_VERSION}" + DRY_RUN: "false" + DISABLE_DEV_ISSUE: "true" + DISABLE_NOTIFICATIONS: "false" + DISABLE_BRANCH_CREATION: "false" + DISABLE_PREPARE_NEXT: "false" + REVIEWERS: "elastic/elastic-agent-release" + DEV_ISSUE_URL: "https://github.com/elastic/dev/issues/0" - Trigger parameters: - - NEW_VERSION: ${NEW_VERSION} - - BRANCH: ${BRANCH} - - WORKFLOW: ${WORKFLOW} - key: block-get-dra-artifacts - blocked_state: running + - trigger: ingest-dev-pipeline-release-patch + key: bump-version-patch + label: ":rocket: Trigger ingest-dev patch release" + if: build.env("WORKFLOW") == "patch" + build: + branch: "main" + message: "Version bump elastic-agent to ${NEW_VERSION} (patch)" + meta_data: + REPOSITORY: "elastic-agent" + CURRENT_RELEASE: "${NEW_VERSION}" + DRY_RUN: "false" + DISABLE_DEV_ISSUE: "true" + DISABLE_NOTIFICATIONS: "false" + DISABLE_RELEASE_PREPARE: "false" + DISABLE_PREPARE_NEXT: "false" + REVIEWERS: "elastic/elastic-agent-release" + DEV_ISSUE_URL: "https://github.com/elastic/dev/issues/0" - - label: "Create branch for version bump" - key: branch-for-version-bump - depends_on: block-get-dra-artifacts + - label: "Fetch DRA Artifacts" + key: fetch-dra-artifacts + depends_on: + - bump-version-minor-major + - bump-version-patch agents: image: docker.elastic.co/release-eng/wolfi-build-essential-release-eng:latest - cpu: 500m - memory: 1Gi + cpu: 250m + memory: 512Mi ephemeralStorage: 1Gi command: - - echo "Placeholder" + - echo "Starting DRA artifacts retrieval..." + timeout_in_minutes: 240 + retry: + automatic: + - exit_status: "*" + limit: 2 + manual: + permit_on_passed: true + + plugins: + - elastic/json-watcher#v1.0.0: + url: "https://artifacts-staging.elastic.co/elastic-agent-package/latest/${BRANCH}.json" + field: ".version" + expected_value: "${NEW_VERSION}" + polling_interval: "30" + - elastic/json-watcher#v1.0.0: + url: "https://storage.googleapis.com/elastic-artifacts-snapshot/elastic-agent-package/latest/${BRANCH}.json" + field: ".version" + expected_value: "${NEW_VERSION}-SNAPSHOT" + polling_interval: "30" From b4e23f434cfece8750f6781f3167348f7123af32 Mon Sep 17 00:00:00 2001 From: "fr4nc1sc0.r4m0n" Date: Fri, 24 Jul 2026 14:14:00 +0200 Subject: [PATCH 4/9] Keep the DRA block step and trigger ingest-dev release pipelines. Add ingest-dev minor/major and patch triggers before the existing block gate so DRA (or the agent placeholder) still requires manual unblock. --- .buildkite/pipeline.version-bump.yml | 54 +++++++++++++++------------- 1 file changed, 30 insertions(+), 24 deletions(-) diff --git a/.buildkite/pipeline.version-bump.yml b/.buildkite/pipeline.version-bump.yml index 3b2d2930895..e0ca7335ad1 100644 --- a/.buildkite/pipeline.version-bump.yml +++ b/.buildkite/pipeline.version-bump.yml @@ -4,6 +4,19 @@ notify: - "#ingest-notifications" message: " Version bump to ${NEW_VERSION} — ${BUILDKITE_BUILD_URL}" if: (build.branch == 'main' || build.branch =~ /^[0-9]+\.[0-9x]+\$/) && (build.state == 'passed' || build.state == 'failed') + - slack: + channels: + - "#ingest-notifications" + message: | + + 🚦 Pipeline waiting to be unblocked 🚦 + Repo: `${REPO}` + + New version: `${NEW_VERSION}` + Branch: `${BRANCH}` + Workflow: `${WORKFLOW}` + ${BUILDKITE_BUILD_URL} + if: build.state == "blocked" steps: # Phase 3: trigger ingest-dev release automation for this repository only. @@ -45,34 +58,27 @@ steps: REVIEWERS: "elastic/elastic-agent-release" DEV_ISSUE_URL: "https://github.com/elastic/dev/issues/0" - - label: "Fetch DRA Artifacts" - key: fetch-dra-artifacts + - block: "Placeholder blocked step" + prompt: | + Unblock when your team is ready to proceed. + + Trigger parameters: + - NEW_VERSION: ${NEW_VERSION} + - BRANCH: ${BRANCH} + - WORKFLOW: ${WORKFLOW} + key: block-get-dra-artifacts + blocked_state: running depends_on: - bump-version-minor-major - bump-version-patch + + - label: "Create branch for version bump" + key: branch-for-version-bump + depends_on: block-get-dra-artifacts agents: image: docker.elastic.co/release-eng/wolfi-build-essential-release-eng:latest - cpu: 250m - memory: 512Mi + cpu: 500m + memory: 1Gi ephemeralStorage: 1Gi command: - - echo "Starting DRA artifacts retrieval..." - timeout_in_minutes: 240 - retry: - automatic: - - exit_status: "*" - limit: 2 - manual: - permit_on_passed: true - - plugins: - - elastic/json-watcher#v1.0.0: - url: "https://artifacts-staging.elastic.co/elastic-agent-package/latest/${BRANCH}.json" - field: ".version" - expected_value: "${NEW_VERSION}" - polling_interval: "30" - - elastic/json-watcher#v1.0.0: - url: "https://storage.googleapis.com/elastic-artifacts-snapshot/elastic-agent-package/latest/${BRANCH}.json" - field: ".version" - expected_value: "${NEW_VERSION}-SNAPSHOT" - polling_interval: "30" + - echo "Placeholder" From 2d1b2884f88bb3089caa886f5d57fa3e3dfa5e47 Mon Sep 17 00:00:00 2001 From: "fr4nc1sc0.r4m0n" Date: Mon, 27 Jul 2026 12:00:00 +0200 Subject: [PATCH 5/9] Pass ingest-dev trigger params via build.env instead of meta_data. --- .buildkite/pipeline.version-bump.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildkite/pipeline.version-bump.yml b/.buildkite/pipeline.version-bump.yml index e0ca7335ad1..e5766e9d865 100644 --- a/.buildkite/pipeline.version-bump.yml +++ b/.buildkite/pipeline.version-bump.yml @@ -28,7 +28,7 @@ steps: build: branch: "main" message: "Version bump elastic-agent to ${NEW_VERSION} (${WORKFLOW})" - meta_data: + env: REPOSITORY: "elastic-agent" RELEASE_TYPE: "${WORKFLOW}" CURRENT_RELEASE: "${NEW_VERSION}" @@ -47,7 +47,7 @@ steps: build: branch: "main" message: "Version bump elastic-agent to ${NEW_VERSION} (patch)" - meta_data: + env: REPOSITORY: "elastic-agent" CURRENT_RELEASE: "${NEW_VERSION}" DRY_RUN: "false" From 05b7bfe42c6ef7c50504161a71862be503b0d1f6 Mon Sep 17 00:00:00 2001 From: "fr4nc1sc0.r4m0n" Date: Mon, 27 Jul 2026 13:33:46 +0200 Subject: [PATCH 6/9] Drop depends_on from version-bump block after ingest-dev triggers. --- .buildkite/pipeline.version-bump.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.buildkite/pipeline.version-bump.yml b/.buildkite/pipeline.version-bump.yml index e5766e9d865..5ba101ad3c5 100644 --- a/.buildkite/pipeline.version-bump.yml +++ b/.buildkite/pipeline.version-bump.yml @@ -68,9 +68,6 @@ steps: - WORKFLOW: ${WORKFLOW} key: block-get-dra-artifacts blocked_state: running - depends_on: - - bump-version-minor-major - - bump-version-patch - label: "Create branch for version bump" key: branch-for-version-bump From e3138a6b0f64e42762f21c2a8a00d999c70aa81b Mon Sep 17 00:00:00 2001 From: "fr4nc1sc0.r4m0n" Date: Mon, 27 Jul 2026 13:42:19 +0200 Subject: [PATCH 7/9] Slim ingest-dev trigger env to intentional overrides only. Drop DRY_RUN and false DISABLE_* flags so the version-bump contract stays minimal. --- .buildkite/pipeline.version-bump.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.buildkite/pipeline.version-bump.yml b/.buildkite/pipeline.version-bump.yml index 5ba101ad3c5..c312e909b51 100644 --- a/.buildkite/pipeline.version-bump.yml +++ b/.buildkite/pipeline.version-bump.yml @@ -32,13 +32,8 @@ steps: REPOSITORY: "elastic-agent" RELEASE_TYPE: "${WORKFLOW}" CURRENT_RELEASE: "${NEW_VERSION}" - DRY_RUN: "false" DISABLE_DEV_ISSUE: "true" - DISABLE_NOTIFICATIONS: "false" - DISABLE_BRANCH_CREATION: "false" - DISABLE_PREPARE_NEXT: "false" REVIEWERS: "elastic/elastic-agent-release" - DEV_ISSUE_URL: "https://github.com/elastic/dev/issues/0" - trigger: ingest-dev-pipeline-release-patch key: bump-version-patch @@ -50,13 +45,8 @@ steps: env: REPOSITORY: "elastic-agent" CURRENT_RELEASE: "${NEW_VERSION}" - DRY_RUN: "false" DISABLE_DEV_ISSUE: "true" - DISABLE_NOTIFICATIONS: "false" - DISABLE_RELEASE_PREPARE: "false" - DISABLE_PREPARE_NEXT: "false" REVIEWERS: "elastic/elastic-agent-release" - DEV_ISSUE_URL: "https://github.com/elastic/dev/issues/0" - block: "Placeholder blocked step" prompt: | From c8c1362f9d883ebe6ea6459a304a7d4fd72b2517 Mon Sep 17 00:00:00 2001 From: "fr4nc1sc0.r4m0n" Date: Thu, 30 Jul 2026 12:53:54 +0200 Subject: [PATCH 8/9] Point ingest-dev triggers at PR 8918 with DRY_RUN for integration testing. --- .buildkite/pipeline.version-bump.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.buildkite/pipeline.version-bump.yml b/.buildkite/pipeline.version-bump.yml index c312e909b51..92ca3fe2ffa 100644 --- a/.buildkite/pipeline.version-bump.yml +++ b/.buildkite/pipeline.version-bump.yml @@ -26,13 +26,14 @@ steps: label: ":rocket: Trigger ingest-dev minor/major release" if: build.env("WORKFLOW") == "minor" || build.env("WORKFLOW") == "major" build: - branch: "main" + branch: "refs/pull/8918/head" message: "Version bump elastic-agent to ${NEW_VERSION} (${WORKFLOW})" env: REPOSITORY: "elastic-agent" RELEASE_TYPE: "${WORKFLOW}" CURRENT_RELEASE: "${NEW_VERSION}" DISABLE_DEV_ISSUE: "true" + DRY_RUN: "true" REVIEWERS: "elastic/elastic-agent-release" - trigger: ingest-dev-pipeline-release-patch @@ -40,12 +41,13 @@ steps: label: ":rocket: Trigger ingest-dev patch release" if: build.env("WORKFLOW") == "patch" build: - branch: "main" + branch: "refs/pull/8918/head" message: "Version bump elastic-agent to ${NEW_VERSION} (patch)" env: REPOSITORY: "elastic-agent" CURRENT_RELEASE: "${NEW_VERSION}" DISABLE_DEV_ISSUE: "true" + DRY_RUN: "true" REVIEWERS: "elastic/elastic-agent-release" - block: "Placeholder blocked step" From c27b9854cd7a6719205a567a4ac5615b8e17d653 Mon Sep 17 00:00:00 2001 From: "fr4nc1sc0.r4m0n" Date: Thu, 30 Jul 2026 13:59:21 +0200 Subject: [PATCH 9/9] Restore ingest-dev trigger branch to main and drop DRY_RUN. --- .buildkite/pipeline.version-bump.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.buildkite/pipeline.version-bump.yml b/.buildkite/pipeline.version-bump.yml index 92ca3fe2ffa..c312e909b51 100644 --- a/.buildkite/pipeline.version-bump.yml +++ b/.buildkite/pipeline.version-bump.yml @@ -26,14 +26,13 @@ steps: label: ":rocket: Trigger ingest-dev minor/major release" if: build.env("WORKFLOW") == "minor" || build.env("WORKFLOW") == "major" build: - branch: "refs/pull/8918/head" + branch: "main" message: "Version bump elastic-agent to ${NEW_VERSION} (${WORKFLOW})" env: REPOSITORY: "elastic-agent" RELEASE_TYPE: "${WORKFLOW}" CURRENT_RELEASE: "${NEW_VERSION}" DISABLE_DEV_ISSUE: "true" - DRY_RUN: "true" REVIEWERS: "elastic/elastic-agent-release" - trigger: ingest-dev-pipeline-release-patch @@ -41,13 +40,12 @@ steps: label: ":rocket: Trigger ingest-dev patch release" if: build.env("WORKFLOW") == "patch" build: - branch: "refs/pull/8918/head" + branch: "main" message: "Version bump elastic-agent to ${NEW_VERSION} (patch)" env: REPOSITORY: "elastic-agent" CURRENT_RELEASE: "${NEW_VERSION}" DISABLE_DEV_ISSUE: "true" - DRY_RUN: "true" REVIEWERS: "elastic/elastic-agent-release" - block: "Placeholder blocked step"