File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 35
35
token : ${{ secrets.RELEASE_ENGINEERING_TOKEN }}
36
36
repository : github/codeql-coding-standards-release-engineering
37
37
event-type : matrix-test
38
- client-payload : ' {"pr": "${{ github.event.number }}"}'
38
+ client-payload : ' {"pr": "${{ github.event.issue. number }}"}'
39
39
40
40
- uses : actions/github-script@v6
41
41
if : ${{ github.event.issue.pull_request && contains(github.event.comment.body, '/test-matrix') }}
Original file line number Diff line number Diff line change @@ -321,7 +321,13 @@ $jobRows = $queriesToCheck | ForEach-Object -ThrottleLimit $NumThreads -Parallel
321
321
# ##########################################################
322
322
# Push context
323
323
# ##########################################################
324
- $fileSet = (Get-CompilerSpecificFiles - Configuration $using :Configuration - Language $using :Language - TestDirectory $testDirectory - Query $CurrentQueryName )
324
+
325
+ if ($q.shared_implementation_short_name ) {
326
+ $fileSet = (Get-CompilerSpecificFiles - Configuration $using :Configuration - Language $using :Language - TestDirectory $testDirectory - Query $q.shared_implementation_short_name )
327
+ }
328
+ else {
329
+ $fileSet = (Get-CompilerSpecificFiles - Configuration $using :Configuration - Language $using :Language - TestDirectory $testDirectory - Query $CurrentQueryName )
330
+ }
325
331
326
332
if ($fileSet ){
327
333
$context = Push-CompilerSpecificFiles - Configuration $using :Configuration - Language $using :Language - FileSet $fileSet
You can’t perform that action at this time.
0 commit comments