This is an automated email from the ASF dual-hosted git repository.
dpgaspar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 31d6f5a639 chore(ci): fix ephemeral env null issue number (v2) (#32221)
31d6f5a639 is described below
commit 31d6f5a639039f02b89472c3ce64bd87c3d7ec9f
Author: Daniel Vaz Gaspar <[email protected]>
AuthorDate: Tue Feb 11 14:32:01 2025 +0000
chore(ci): fix ephemeral env null issue number (v2) (#32221)
---
.github/workflows/ephemeral-env.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/ephemeral-env.yml
b/.github/workflows/ephemeral-env.yml
index bb5f4d32fb..4c503ed6fe 100644
--- a/.github/workflows/ephemeral-env.yml
+++ b/.github/workflows/ephemeral-env.yml
@@ -223,7 +223,8 @@ jobs:
- name: Check target image exists in ECR
id: check-image
continue-on-error: true
- PR_NUMBER: ${{ github.event.inputs.issue_number ||
github.event.pull_request.number }}
+ env:
+ PR_NUMBER: ${{ github.event.inputs.issue_number ||
github.event.pull_request.number }}
run: |
aws ecr describe-images \
--registry-id $(echo "${{ steps.login-ecr.outputs.registry }}" |
grep -Eo "^[0-9]+") \