From 04feef603acd92715d7ac708f0c4cec2b51c7f64 Mon Sep 17 00:00:00 2001 From: Derek Roberts Date: Mon, 9 Dec 2024 10:53:20 -0800 Subject: [PATCH] feat: add PR numbers to PR deploys and tests (#2199) --- .github/workflows/pr-open.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-open.yml b/.github/workflows/pr-open.yml index 375d20683..f4b7134e4 100644 --- a/.github/workflows/pr-open.yml +++ b/.github/workflows/pr-open.yml @@ -28,7 +28,7 @@ jobs: # https://github.com/bcgov/quickstart-openshift-helpers deploys: - name: Deploys + name: Deploys (${{ github.event.number }}) needs: [builds] uses: ./.github/workflows/.deployer.yml secrets: @@ -40,7 +40,7 @@ jobs: params: --set global.secrets.persist=false tests: - name: Tests + name: Tests (${{ github.event.number }}) if: needs.deploys.outputs.triggered == 'true' needs: [deploys] uses: ./.github/workflows/.tests.yml