Skip to content

Commit fedca4a

Browse files
committed
🎨Use explicit strings for action input defaults
1 parent 1350b8b commit fedca4a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ repos:
1111
- repo: https://github.com/python-jsonschema/check-jsonschema.git
1212
rev: 0.18.3
1313
hooks:
14+
- id: check-github-actions
1415
- id: check-github-workflows
1516
- id: check-jsonschema
1617
name: Check GitHub Workflows set timeout-minutes

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,21 @@ inputs:
1919
verify_metadata:
2020
description: Check metadata before uploading
2121
required: false
22-
default: true
22+
default: 'true'
2323
skip_existing:
2424
description: >-
2525
Do not fail if a Python package distribution
2626
exists in the target package index
2727
required: false
28-
default: false
28+
default: 'false'
2929
verbose:
3030
description: Show verbose output.
3131
required: false
32-
default: false
32+
default: 'false'
3333
print_hash:
3434
description: Show hash values of files to be uploaded
3535
required: false
36-
default: false
36+
default: 'false'
3737
branding:
3838
color: yellow
3939
icon: upload-cloud

0 commit comments

Comments
 (0)