Skip to content

Commit ce54f49

Browse files
Merge pull request #30 from code-kern-ai/parent-images
Parent images CI/CD
2 parents dc69cde + a18cba9 commit ce54f49

File tree

3 files changed

+36
-1
lines changed

3 files changed

+36
-1
lines changed

.github/workflows/pi_build.yml

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

.github/workflows/pi_merge.yml

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

requirements/common-requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-r mini-requirements.in
22
boto3==1.25.0
33
minio==7.1.12
4-
numpy==1.23.4
4+
numpy==1.23.5
55
pandas==1.5.1
66
psycopg2-binary==2.9.9
77
SQLAlchemy==1.4.42

0 commit comments

Comments
 (0)