Skip to content

Commit

Permalink
fix(workflows): add a placeholder job for required checks
Browse files Browse the repository at this point in the history
  • Loading branch information
weisdd committed May 22, 2024
1 parent 8bbb770 commit 96c6654
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
name: Check for docs-only changes
run: echo "docs_only=true" >> $GITHUB_OUTPUT

end-to-end:
e2e-tests:
name: e2e on kind ${{ matrix.version }}
runs-on: ubuntu-latest
needs:
Expand Down Expand Up @@ -115,3 +115,14 @@ jobs:
kubectl logs -n $NAMESPACE $POD -c manager
echo "previous pod logs (if any)"
kubectl logs -p -n $NAMESPACE $POD -c manager || true
end-to-end:
name: e2e on kind ${{ matrix.version }}
runs-on: ubuntu-latest
needs:
- e2e-tests
steps:
- name: Run e2e tests
shell: bash
run: |
echo "Placeholder job for required checks"

0 comments on commit 96c6654

Please sign in to comment.