Skip to content

Commit

Permalink
podvm on pull
Browse files Browse the repository at this point in the history
Signed-off-by: Wainer dos Santos Moschetta <[email protected]>
  • Loading branch information
wainersm committed Sep 11, 2023
1 parent 0cc7a81 commit a1696db
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/podvm_on_pull.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: podvm_on_pull
on:
pull_request:

jobs:
podvm_builder:
uses: ./.github/workflows/podvm_builder.yaml
with:
caa_src_ref: ${{ github.event.pull_request.head.sha }}
registry: ghcr.io/${{ github.repository_owner }}
secrets: inherit
podvm_binaries:
needs: [podvm_builder]
uses: ./.github/workflows/podvm_binaries.yaml
with:
caa_src_ref: ${{ github.event.pull_request.head.sha }}
registry: ghcr.io/${{ github.repository_owner }}
builder_img_tag: ci-pr${{ github.event.number }}
secrets: inherit
podvm:
needs: [podvm_binaries]
uses: ./.github/workflows/podvm.yaml
with:
caa_src_ref: ${{ github.event.pull_request.head.sha }}
registry: ghcr.io/${{ github.repository_owner }}
binaries_img_tag: ci-pr${{ github.event.number }}
secrets: inherit

0 comments on commit a1696db

Please sign in to comment.