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 b199fdc commit 15bb4d8Copy full SHA for 15bb4d8
ql/test/query-tests/Security/CWE-094/.github/workflows/matrix_flow.yml
@@ -0,0 +1,29 @@
1
+name: Matrix Flow
2
+
3
+on:
4
+ pull_request_target:
5
6
+jobs:
7
+ lookup:
8
+ runs-on: ubuntu-latest
9
+ outputs:
10
+ matrix: ${{ steps.filelist.outputs.file_names }}
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Get all zip files
14
+ id: filelist
15
+ uses: the-coding-turtle/[email protected]
16
+ with:
17
+ directory: "."
18
+ file_extension: "zip"
19
20
+ multi_tenant:
21
+ needs: lookup
22
23
+ strategy:
24
+ matrix:
25
+ tenant: ${{fromJson(needs.lookup.outputs.matrix)}}
26
27
+ - name: Show all files
28
+ run: |
29
+ echo "this is file: ${{ matrix.TENANT }}"
0 commit comments