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 e0c91c7 commit acf0d2dCopy full SHA for acf0d2d
.github/actions/ciValidate/action.yml
@@ -10,6 +10,9 @@ inputs:
10
ref:
11
description: The head ref of the branch that is proposed to be merged
12
required: false
13
+ baseRef:
14
+ description: The sha/ref to the base commit against which this ref will be merged into
15
+ required: false
16
deleteScratch:
17
description: Delete scratch org after validation
18
@@ -40,6 +43,10 @@ runs:
40
43
command+=" --ref ${{ inputs.ref }}"
41
44
fi
42
45
46
+ if [ "${{ inputs.baseRef }}" ]; then
47
+ command+=" --baseRef ${{ inputs.baseRef }}"
48
+ fi
49
+
50
if [ "${{ inputs.deleteScratch }}" ];
51
then
52
command+=" --deletescratchorg"
0 commit comments