File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -9988,7 +9988,12 @@ async function main() {
9988
9988
detectConcurrentRuns ( context ) ;
9989
9989
}
9990
9990
if ( context . paths . length >= 1 || context . pathsIgnore . length >= 1 ) {
9991
- await backtracePathSkipping ( context ) ;
9991
+ if ( skipAfterSuccessfulDuplicates ) {
9992
+ await backtracePathSkipping ( context ) ;
9993
+ }
9994
+ else {
9995
+ core . warning ( `Ignore paths detection because 'skip_after_successful_duplicate' is set to false` ) ;
9996
+ }
9992
9997
}
9993
9998
core . info ( "Do not skip execution because we did not find a transferable run" ) ;
9994
9999
exitSuccess ( { shouldSkip : false } ) ;
Original file line number Diff line number Diff line change @@ -153,7 +153,11 @@ async function main() {
153
153
detectConcurrentRuns ( context ) ;
154
154
}
155
155
if ( context . paths . length >= 1 || context . pathsIgnore . length >= 1 ) {
156
- await backtracePathSkipping ( context ) ;
156
+ if ( skipAfterSuccessfulDuplicates ) {
157
+ await backtracePathSkipping ( context ) ;
158
+ } else {
159
+ core . warning ( `Ignore paths detection because 'skip_after_successful_duplicate' is set to false` ) ;
160
+ }
157
161
}
158
162
core . info ( "Do not skip execution because we did not find a transferable run" ) ;
159
163
exitSuccess ( { shouldSkip : false } ) ;
You can’t perform that action at this time.
0 commit comments