We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49af1a9 commit a581701Copy full SHA for a581701
1 file changed
action.yml
@@ -5,10 +5,9 @@
5
name: Bump Version
6
description: Retrieve the latest release tag, run the Bash script to bump version, and save the new version to PYPI_VERSION.
7
8
-inputs: # actions don't have secrets, so we use inputs instead
+inputs: # actions don't have secrets, so we use inputs instead
9
token:
10
- description: 'A Github PAT, e.g. secrets.GITHUB_TOKEN'
11
- required: true
+ description: "A Github PAT, e.g. secrets.GITHUB_TOKEN. When not provided, the action will use the default token (may hit rate limits)."
12
13
runs:
14
using: "composite"
@@ -20,7 +19,7 @@ runs:
20
19
repository: ${{ github.repository }}
21
excludes: prerelease, draft
22
token: ${{ inputs.token }}
23
-
+
24
- name: Run version bump script
25
id: bump_version
26
shell: bash
0 commit comments