Skip to content

Commit

Permalink
fix(action): correct minor typo in action metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
jimeh committed May 18, 2023
1 parent 09a0ac2 commit 4bb275e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ _Note: Outputs are not included in this equivalence example._
| id | Release ID. |
| name | Release name. |
| tag_name | Release tag name. |
| sha | Release sha |
| sha | Release SHA. |
| body | Release body. |
| html_url | Release URL. |
| draft | Whether or not the release is a draft. |
Expand Down
7 changes: 3 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ author: "jimeh"

inputs:
token:
description: >-
GitHub token used to authenticate.
description: "GitHub token used to authenticate."
required: false
default: ${{ github.token }}
app-id:
Expand Down Expand Up @@ -71,7 +70,7 @@ outputs:
description: "Release tag name."
value: ${{ steps.release-please.outputs.tag_name }}
sha:
description: "Release sha"
description: "Release SHA."
value: ${{ steps.release-please.outputs.sha }}
body:
description: "Release body."
Expand Down Expand Up @@ -126,7 +125,7 @@ runs:
permissions: ${{ inputs.permissions }}
private_key: ${{ inputs.private-key }}
repository: ${{ github.repository }}
- name: Determine which token to use
- name: resolve token
id: token
run: |-
echo "token=${APP_TOKEN:-$INPUT_TOKEN}" >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit 4bb275e

Please sign in to comment.