We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45d598b commit 577a7e6Copy full SHA for 577a7e6
.github/workflows/pi_build.yml
@@ -38,7 +38,8 @@ jobs:
38
id: get-diff
39
run: |
40
bash cicd-deployment-scripts/pi/diff.sh \
41
- -p "${{ github.event.pull_request.number }}"
+ -p "${{ github.event.pull_request.number }}" \
42
+ -s cicd-deployment-scripts/pi/settings.sh
43
44
pi-matrix-test:
45
name: 'Parent Images: Matrix Test'
pi/diff.sh
@@ -3,14 +3,18 @@
3
set -e
4
5
PR_NUMBER=""
6
+SOURCE_SCRIPT="pi/settings.sh"
7
-while getopts p: flag
8
+while getopts p:s: flag
9
do
10
case "${flag}" in
11
p) PR_NUMBER=${OPTARG};;
12
+ s) SOURCE_SCRIPT=${OPTARG};;
13
esac
14
done
15
16
+source $SOURCE_SCRIPT
17
+
18
UPDATED_FILES=$(gh pr diff $PR_NUMBER --name-only)
19
UPDATED_PARENT_TYPES=()
20
while IFS= read -r file; do
0 commit comments