File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1313 strategy :
1414 fail-fast : false
1515 matrix :
16- repoIds : ${{ fromJSON(github.event.inputs.repoIdChunks ) }}
16+ repoNwos : ${{ fromJSON(github.event.inputs.repoNwoChunks ) }}
1717
1818 steps :
1919 # Use ::add::mask for all tokens.
@@ -27,14 +27,14 @@ jobs:
2727 xargs -I {} echo "::add-mask::{}"
2828
2929 # Extract the subset of the repositories input that we'll be analysing for this
30- # job, using the repoIds matrix input.
30+ # job, using the repoNwos matrix input.
3131 - name : Compute subset of repos
3232 id : repos
3333 shell : node {0}
3434 run : |
3535 const allRepos = ${{ github.event.inputs.repositories }};
36- const repoIds = new Set(${{ toJSON(matrix.repoIds ) }});
37- const repositories = allRepos.filter(r => repoIds .has(r.id ));
36+ const repoNwos = new Set(${{ toJSON(matrix.repoNwos ) }});
37+ const repositories = allRepos.filter(r => repoNwos .has(r.nwo ));
3838 console.log(`::set-output name=repositories::${JSON.stringify(repositories)}`);
3939
4040 # This might not be the cleanest way to get hold of CodeQL but it's reliable
You can’t perform that action at this time.
0 commit comments