From 9a7b271de73595c364a4614bc7ae925d17560253 Mon Sep 17 00:00:00 2001 From: aimee rivers Date: Wed, 13 Nov 2024 15:03:16 +0100 Subject: [PATCH] feat: Initiate E2E tests automatically as soon as a Docker image has been built (#110) If it works, this will really streamline the whole release - build - test workflow, removing another manual step. Closes #104 --- .github/workflows/dockerize-please.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/dockerize-please.yml b/.github/workflows/dockerize-please.yml index 10d5bef..d39776b 100644 --- a/.github/workflows/dockerize-please.yml +++ b/.github/workflows/dockerize-please.yml @@ -61,3 +61,9 @@ jobs: tags: | ghcr.io/${{ github.repository }}:${{ inputs.tag_name }} ghcr.io/${{ github.repository }}:latest + + - name: Initiate E2E test workflow + run: | + gh workflow run --repo hedia-team/e2e-service --raw-field suite="All" test-please.yml + env: + GH_TOKEN: ${{ secrets.HEDIA_BOT_GITHUB_PAT }}