Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

debug #5998

Closed
wants to merge 11 commits into from
Closed

debug #5998

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/debug.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: debug
on:
- pull_request

env:
E2E_CHECK_NAME: e2e tests

jobs:
run-test:
runs-on: equinix-keda-runner
name: Execute e2e tests
container: ghcr.io/kedacore/keda-tools:1.21.9
steps:
- name: Check out code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
fetch-depth: 1

- uses: oNaiPs/secrets-to-env-action@v1
with:
secrets: ${{ toJSON(secrets) }}

- name: Get context
env:
TEST_CLUSTER_NAME: keda-e2e-cluster-pr
run: |
make get-cluster-context

- name: List namespaces
id: list-namespaces
continue-on-error: true
run: |
kubectl get ns

- name: Wait on failure
if: steps.list-namespaces.outcome != 'success'
run: |
sleep 3600s
exit 1
Loading