Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
mfaizanse committed Jan 18, 2024
1 parent 7bbf087 commit b2649e4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Check if PR approved
env:
PR_URL: https://github.com/kyma-project/eventing-manager/pull/${{ github.event.number }}
run: |
echo "PR: ${PR_URL}"
gh pr view ${PR_URL} --json=reviewDecision
- name: Wait for the 'pull-eventing-manager-build' job to succeed
id: pull-wait-build
if: github.event_name == 'pull_request'
Expand Down Expand Up @@ -182,7 +189,7 @@ jobs:
backend-switching:
needs: wait-until-build-succeeds
# if: github.event_name == 'push'
if: github.event_name == 'push'
uses: "./.github/workflows/e2e-backend-switching-reuseable.yml"
with:
eventing-manager-image: ${{ needs.wait-until-build-succeeds.outputs.image-name }}
Expand Down
2 changes: 1 addition & 1 deletion scripts/gardener/aws/provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ gardener::validate_and_default() {

# print configurations for debugging purposes:
log::banner "Configurations:"
echo "CLUSTER_NAME${CLUSTER_NAME}"
echo "CLUSTER_NAME: ${CLUSTER_NAME}"
echo "GARDENER_REGION: ${GARDENER_REGION}"
echo "GARDENER_ZONES: ${GARDENER_ZONES}"
echo "MACHINE_TYPE: ${MACHINE_TYPE}"
Expand Down

0 comments on commit b2649e4

Please sign in to comment.