File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 13
13
strategy :
14
14
fail-fast : false
15
15
matrix :
16
- repoIds : ${{ fromJSON(github.event.inputs.repoIdChunks ) }}
16
+ repoNwos : ${{ fromJSON(github.event.inputs.repoNwoChunks ) }}
17
17
18
18
steps :
19
19
# Use ::add::mask for all tokens.
@@ -27,14 +27,14 @@ jobs:
27
27
xargs -I {} echo "::add-mask::{}"
28
28
29
29
# 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.
31
31
- name : Compute subset of repos
32
32
id : repos
33
33
shell : node {0}
34
34
run : |
35
35
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 ));
38
38
console.log(`::set-output name=repositories::${JSON.stringify(repositories)}`);
39
39
40
40
# 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