Skip to content

Commit 28674b7

Browse files
committed
ci: add GH workflows
1 parent ca42eba commit 28674b7

File tree

3 files changed

+48
-0
lines changed

3 files changed

+48
-0
lines changed

.github/workflows/pi_build.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: 'Parent Images: Build'
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
7+
8+
permissions:
9+
id-token: write
10+
contents: read
11+
actions: read
12+
13+
jobs:
14+
call-pi-build:
15+
uses: code-kern-ai/cicd-deployment-scripts/.github/workflows/pi_build.yml@dev
16+
secrets: inherit

.github/workflows/pi_merge.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: 'Parent Images: Build'
2+
3+
on:
4+
pull_request:
5+
types: [closed]
6+
7+
8+
permissions:
9+
id-token: write
10+
contents: read
11+
actions: read
12+
13+
jobs:
14+
call-pi-merge:
15+
uses: code-kern-ai/cicd-deployment-scripts/.github/workflows/pi_merge.yml@dev
16+
if: ${{ github.event.pull_request.merged }}
17+
secrets: inherit

.github/workflows/pi_release.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: 'Parent Images: Build'
2+
3+
on:
4+
release:
5+
types: [prereleased]
6+
7+
permissions:
8+
id-token: write
9+
contents: read
10+
actions: read
11+
12+
jobs:
13+
call-pi-release:
14+
uses: code-kern-ai/cicd-deployment-scripts/.github/workflows/pi_release.yml@dev
15+
secrets: inherit

0 commit comments

Comments
 (0)