Skip to content

Commit

Permalink
Merge pull request #270 from kubernetes-sigs/pr-post-workflow
Browse files Browse the repository at this point in the history
🏃 Add a workflow for running the e2e tests
  • Loading branch information
detiber committed Jul 29, 2021
2 parents 45bf382 + 08c0337 commit 81eb48a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/pr-post.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Pull Request E2E
on:
workflow_run:
workflows: ["Pull Request Validation"]
types: [completed]
jobs:
e2e-smoketest:
name: E2E Smoketest
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: checkout
uses: actions/checkout@v2.3.4
- uses: actions/setup-go@v2
with:
go-version: '1.16' # The Go version to download (if necessary) and use.
- name: download e2e artifacts
uses: actions/download-artifact@v2
with:
name: e2e-artifacts
path: /tmp/e2e-artifacts
- name: Display structure of downloaded files
run: ls -R
working-directory: /tmp/e2e-artifacts

0 comments on commit 81eb48a

Please sign in to comment.