diff --git a/.github/workflows/pi_merge.yml b/.github/workflows/pi_merge.yml new file mode 100644 index 0000000..b30a834 --- /dev/null +++ b/.github/workflows/pi_merge.yml @@ -0,0 +1,18 @@ +name: 'Parent Images: Parent Image Merge' + +on: + workflow_dispatch: + + pull_request: + types: [closed] + +permissions: + id-token: write + contents: write + actions: read + +jobs: + call-pi-merge-parent-image: + uses: code-kern-ai/cicd-deployment-scripts/.github/workflows/pi_merge_parent_image.yml@dev + if: ${{ github.event.pull_request.merged }} + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/pi_release.yml b/.github/workflows/pi_release.yml new file mode 100644 index 0000000..90e975b --- /dev/null +++ b/.github/workflows/pi_release.yml @@ -0,0 +1,15 @@ +name: 'Parent Images: Release' + +on: + release: + types: [prereleased] + +permissions: + id-token: write + contents: read + actions: read + +jobs: + call-pi-release: + uses: code-kern-ai/cicd-deployment-scripts/.github/workflows/pi_release.yml@dev + secrets: inherit \ No newline at end of file