Skip to content

Commit a581701

Browse files
committed
apparently, required inputs are not required...
Signed-off-by: Martijn Govers <[email protected]>
1 parent 49af1a9 commit a581701

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

action.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@
55
name: Bump Version
66
description: Retrieve the latest release tag, run the Bash script to bump version, and save the new version to PYPI_VERSION.
77

8-
inputs: # actions don't have secrets, so we use inputs instead
8+
inputs: # actions don't have secrets, so we use inputs instead
99
token:
10-
description: 'A Github PAT, e.g. secrets.GITHUB_TOKEN'
11-
required: true
10+
description: "A Github PAT, e.g. secrets.GITHUB_TOKEN. When not provided, the action will use the default token (may hit rate limits)."
1211

1312
runs:
1413
using: "composite"
@@ -20,7 +19,7 @@ runs:
2019
repository: ${{ github.repository }}
2120
excludes: prerelease, draft
2221
token: ${{ inputs.token }}
23-
22+
2423
- name: Run version bump script
2524
id: bump_version
2625
shell: bash

0 commit comments

Comments
 (0)