From 6d66f7917c90dbf95798a2d9af4d9558b1068c6f Mon Sep 17 00:00:00 2001 From: Jake Cahill <45230295+JakeSCahill@users.noreply.github.com> Date: Wed, 29 Jul 2026 15:37:30 +0100 Subject: [PATCH] ci: trigger docs quickstart tests on release tags --- .github/workflows/repository-dispatch.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/repository-dispatch.yml b/.github/workflows/repository-dispatch.yml index 816da660cf..6ba1957f53 100644 --- a/.github/workflows/repository-dispatch.yml +++ b/.github/workflows/repository-dispatch.yml @@ -63,6 +63,18 @@ jobs: repository: redpanda-data/console-enterprise event-type: push client-payload: '{"branch": "${{ github.ref_name }}", "commit_sha": "${{ github.sha }}"}' + - name: Trigger docs quickstart tests on release + # The docs repo runs its Doc Detective quickstart (which drives the + # Console UI end to end) against this Console version, so UI changes + # that break documented procedures and screenshots surface at release + # time instead of in the docs repo's nightly run. + uses: peter-evans/repository-dispatch@v4 + if: ${{ startsWith(github.ref, 'refs/tags/v') }} + with: + token: ${{ env.ACTIONS_BOT_TOKEN }} + repository: redpanda-data/docs + event-type: trigger-tests + client-payload: '{"console_version": "${{ github.ref_name }}"}' - name: Set pending enterprise CI status if: ${{ !startsWith(github.ref, 'refs/tags/') }} uses: actions/github-script@v9