Skip to content

Commit

Permalink
Draft of Uffizzi Preview action
Browse files Browse the repository at this point in the history
  • Loading branch information
axisofentropy authored Jul 7, 2023
1 parent 6c275d1 commit 943a7e5
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/call-docker-build-promote.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,20 @@ jobs:
severity: HIGH,CRITICAL
ignore-unfixed: true

preview:
name: Preview
if: github.event_name == 'pull_request'
needs: docker-build-pr
uses: mostlydevops/actions/.github/workflows/reusable-uffizzi.yaml@main
secrets:
github-token: ${{ secrets.GITOPS_WORDSMITH_K8S }}
with:
repo: mostlydevops/wordsmith-k8s
environment-dir: preview-uffizzi
image: ghcr.io/${{ github.repository }}
tag: ${{ needs.docker-build-pr.outputs.image-tag }}
pr-number: ${{ github.event.number }}

#### MERGE TO MAIN ####
docker-build-merge:
name: Call Build on Push
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/call-uffizzi-delete.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Close Pull Request

on:
pull_request:
types: [closed]

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true

jobs:
delete-preview:
name: Delete Uffizzi virtual cluster preview
uses: mostlydevops/actions/.github/workflows/reusable-uffizzi-delete.yaml@main
secrets:
github-token: ${{ secrets.GITOPS_WORDSMITH_K8S }}
with:
pr-number: ${{ github.event.number }}

0 comments on commit 943a7e5

Please sign in to comment.