|
4 | 4 | workflow_call: |
5 | 5 | inputs: |
6 | 6 | artifacts-pattern: |
| 7 | + description: TODO |
7 | 8 | required: true |
8 | 9 | type: string |
9 | 10 | run-id: |
10 | 11 | description: | |
11 | 12 | The id of the workflow run where the artifacts were uploaded from (default to current run). |
12 | 13 | In case artefacts have been uploadded from another run, this input must be filled with original workflow run id ! |
13 | 14 | required: false |
14 | | - default: "${{ github.run_id }}" |
15 | 15 | type: string |
| 16 | + default: "${{ github.run_id }}" |
16 | 17 | override-commit: |
17 | 18 | description: | |
18 | 19 | Force the commit SHA linked to the uploaded reports. |
19 | 20 | Mostly useful for specific cases (e.g. `workflow_run` workflow). |
20 | 21 | |
21 | 22 | In case input is filled, `override-branch` input (as well as `override-pr` in case of `pull_request` event) |
22 | 23 | should be filled too in order to keep consitency between values ! |
23 | | - type: string |
24 | 24 | required: false |
| 25 | + type: string |
25 | 26 | override-branch: |
26 | 27 | description: | |
27 | 28 | Force the branch linked to the uploaded reports. |
28 | 29 | Mostly useful for specific cases (e.g. `workflow_run` workflow). |
29 | 30 | |
30 | 31 | In case input is filled, `override-commit` input (as well as `override-pr` in case of `pull_request` event) |
31 | 32 | should be filled too in order to keep consitency between values ! |
32 | | - type: string |
33 | 33 | required: false |
| 34 | + type: string |
34 | 35 | override-pr: |
35 | 36 | description: | |
36 | 37 | Force the PR linked to the uploaded reports. |
37 | 38 | Mostly useful for specific cases (e.g. `workflow_run` workflow triggered by a `pull_request` workflow). |
38 | 39 | |
39 | 40 | In case input is filled, `override-commit` and `override-branch` inputs should be filled too in order |
40 | 41 | to keep consitency between values ! |
41 | | - type: string |
42 | 42 | required: false |
| 43 | + type: string |
43 | 44 | override-build: |
44 | 45 | description: | |
45 | 46 | Workflow run ID to link to the uploaded reports. |
46 | 47 | Mostly useful for specific cases (e.g. `workflow_run` workflow). |
47 | 48 | |
48 | 49 | When `run-id` input is provided, this input should most likely have the same value. |
49 | | - type: string |
50 | 50 | required: false |
| 51 | + type: string |
51 | 52 | override-build-url: |
52 | 53 | description: | |
53 | 54 | Workflow run url to link to the uploaded reports. |
54 | 55 | Usually something like `${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}` (based on GHA environment variables). |
55 | 56 | Mostly useful for specific cases (e.g. `workflow_run` workflow). |
56 | 57 | |
57 | 58 | In case input is filled, `override-build` input most likely need to be filled too in order to keep consitency between values ! |
58 | | - type: string |
59 | 59 | required: false |
| 60 | + type: string |
60 | 61 | follow-symbolic-links: |
61 | 62 | description: | |
62 | 63 | Indicates whether to follow symbolic links when resolving glob path. |
63 | 64 | When looking for group directory for instance. |
| 65 | + required: false |
64 | 66 | type: boolean |
65 | 67 | default: false |
66 | 68 | secrets: |
|
0 commit comments