You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/actions/reports-group/find-action/action.yml
+19-19Lines changed: 19 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -10,19 +10,19 @@ description: |
10
10
name: Prepare upload
11
11
runs-on: ubuntu-latest
12
12
outputs:
13
-
matrix: ${{ steps.upload.outputs.matrix }} # See job "Upload" below
14
-
groups: ${{ steps.upload.outputs.paths }} # List of path to reports group directories
13
+
matrix: $\{{ steps.upload.outputs.matrix }} # See job "Upload" below
14
+
groups: $\{{ steps.upload.outputs.paths }} # List of path to reports group directories
15
15
permissions:
16
16
contents: read
17
-
checks: write # For the check run creation ! @TODO check if doable to use inputs there and set read rather than write if ${{ !inputs.with-check-run }}
17
+
checks: write # For the check run creation ! @TODO check if doable to use inputs there and set read rather than write if $\{{ !inputs.with-check-run }}
Note: "Allowed" phase is performed **after "Forbidden" phase**.
178
178
required: false
179
179
default: ''
180
-
// Artifact mode
180
+
# Artifact mode
181
181
artifacts-mode:
182
182
description: |
183
183
Each root directory of the provided `path` will be treated as artifact content. `path` must be a single valid path and not a glob pattern !
@@ -186,14 +186,14 @@ inputs:
186
186
Note: `artifacts-mode` is applied **after ""Filtering" phases** (`forbidden-*` and `allowed-*`)
187
187
required: false
188
188
default: 'false'
189
-
// Path-only mode
189
+
# Path-only mode
190
190
paths-only-mode:
191
191
description: |
192
192
Setting this to `true` will avoid subsequent operation (only filtering in & out has been performed and `artifacts-mode` enabled if needed) and just
193
193
build the list of path. Use this along with `path` input from reports-group/load-metadata-action in order to quickly merge multiple group into one.
194
194
required: false
195
195
default: 'false'
196
-
// "Grouping" phase
196
+
# "Grouping" phase
197
197
group-by:
198
198
description: |
199
199
Comma separated list of field used to group metadata list as a set of list.
@@ -208,11 +208,11 @@ inputs:
208
208
Note: "Grouping" phase is performed **after the "Filtering" phase** (`forbidden-*` and `allowed-*`) and after `artifacts-mode` may have been enabled
209
209
required: false
210
210
default: ''
211
-
// Matrix mode
211
+
# Matrix mode
212
212
matrix-mode:
213
213
description: |
214
214
Setting this to `true` will create an output named `matrix` (`list` output won't be filled !) containing a JSON matrix object.
215
-
Re-use it to create job matrix: `matrix: ${{ fromJson(STEP_OUTPUTS.matrix) }}`
215
+
Re-use it to create job matrix: `matrix: $\{{ fromJson(STEP_OUTPUTS.matrix) }}`
216
216
217
217
Note: `matrix-mode` is applied at the very end of the process, job context will be the shape attached to `format` description, based on all previous inputs configured
218
218
required: false
@@ -240,7 +240,7 @@ outputs:
240
240
matrix:
241
241
description: |
242
242
Filled only with `matrix` format and if `paths-only-mode` is not enabled !
243
-
A JSON encoded object which can be re-used as Job matrix by using the following notation: `matrix: ${{ fromJson(STEP_OUTPUTS.matrix) }}`
243
+
A JSON encoded object which can be re-used as Job matrix by using the following notation: `matrix: $\{{ fromJson(STEP_OUTPUTS.matrix) }}`
244
244
245
245
See `format` and `matrix-mode` description to figure out the metatada shape based on your inputs
0 commit comments