Skip to content

Commit cafd3f8

Browse files
germa89MaxJPReyjorgepiloto
authored
Removing defaults for download action arguments (#131)
Co-authored-by: Maxime Rey <[email protected]> Co-authored-by: Jorge Martinez Garrido <[email protected]>
1 parent 8128d01 commit cafd3f8

File tree

1 file changed

+1
-48
lines changed

1 file changed

+1
-48
lines changed

doc-deploy-dev/action.yml

Lines changed: 1 addition & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -16,48 +16,9 @@ inputs:
1616
required: true
1717
type: string
1818
workflow:
19-
description: 'Workflow name from where the artifacts are downloaded. By default, the same running workflow.'
19+
description: 'Workflow name from where the artifacts are downloaded. By default, the current running workflow.'
2020
required: false
21-
default: ""
2221
type: string
23-
repo:
24-
description: 'Repository name with owner (like actions/checkout)'
25-
required: false
26-
default: ${{ github.repository }}
27-
type: string
28-
pr:
29-
description: 'Pull request number'
30-
required: false
31-
type: string
32-
commit:
33-
description: 'Commit hash'
34-
required: false
35-
type: string
36-
branch:
37-
description: 'Branch name'
38-
required: false
39-
type: string
40-
event:
41-
description: 'Event type'
42-
required: false
43-
type: string
44-
run_id:
45-
description: 'Workflow run id'
46-
required: false
47-
type: string
48-
run_number:
49-
description: 'Workflow run number'
50-
required: false
51-
type: string
52-
dry_run:
53-
description: 'Check the existence of artifact(s) without downloading'
54-
required: false
55-
type: string
56-
checkout:
57-
description: 'Whether to checkout the repository or not'
58-
default: true
59-
required: false
60-
type: boolean
6122

6223
runs:
6324
using: "composite"
@@ -81,17 +42,9 @@ runs:
8142
- name: "Download the HTML documentation artifact"
8243
uses: dawidd6/action-download-artifact@v2
8344
with:
84-
branch: ${{ inputs.branch }}
85-
commit: ${{ inputs.commit }}
86-
dry_run: ${{ inputs.dry_run }}
87-
event: ${{ inputs.event }}
8845
github_token: ${{ inputs.token }}
8946
name: ${{ inputs.doc-artifact-name }}
9047
path: dev
91-
pr: ${{ inputs.pr }}
92-
repo: ${{ inputs.repo }}
93-
run_id: ${{ inputs.run_id }}
94-
run_number: ${{ inputs.run_number }}
9548
workflow: ${{ inputs.workflow }}
9649

9750
- name: "Display structure of downloaded files"

0 commit comments

Comments
 (0)