We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d0b481 commit c7a4af5Copy full SHA for c7a4af5
action.yaml
@@ -1,9 +1,10 @@
1
name: "Generate Changelog"
2
description: "Fetch merged PRs between two commits, extract ```release-note``` blocks and bucket by /kind labels"
3
inputs:
4
- github-token:
+ token:
5
description: "GitHub token (usually ${{ secrets.GITHUB_TOKEN }})"
6
- required: true
+ required: false
7
+ default: {{ github.token }}
8
owner:
9
description: "Repo owner/org"
10
required: true
@@ -20,7 +21,7 @@ runs:
20
21
using: "docker"
22
image: "Dockerfile"
23
args:
- - ${{ inputs.github-token }}
24
+ - ${{ inputs.token }}
25
- ${{ inputs.owner }}
26
- ${{ inputs.repo }}
27
- ${{ inputs.start-sha }}
0 commit comments