Skip to content

Commit aac159a

Browse files
Refer to the token as an access token, and add branding to the action
1 parent 42fd357 commit aac159a

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ WORKDIR /action
33
RUN gem install jwt && \
44
apk add jq && \
55
apk add curl
6-
COPY generate-jwt.rb get-installation-token.sh ./
7-
ENTRYPOINT ["/action/get-installation-token.sh"]
6+
COPY generate-jwt.rb get-installation-access-token.sh ./
7+
ENTRYPOINT ["/action/get-installation-access-token.sh"]

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# GitHub App installation token generator
1+
# GitHub App installation access token generator
22

3-
GitHub Action that can be used to generate an installation token for a GitHub App. This token can for instance be used to clone repos, given the GitHub App has sufficient permissions to do so.
3+
GitHub Action that can be used to generate an installation access token for a GitHub App. This token can for instance be used to clone repos, given the GitHub App has sufficient permissions to do so.
44

55
## Usage
66

action.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: GitHub App installation token generator
2-
description: Generate an installation token for a GitHub App that can be for instance used to clone other repositories
1+
name: GitHub App installation access token generator
2+
description: Generate an installation access token for a GitHub App that can be for instance used to clone other repositories
33
inputs:
44
private-key:
55
description: Private key for the GitHub App
@@ -9,10 +9,14 @@ inputs:
99
required: true
1010
outputs:
1111
token:
12-
description: Installation token for the GitHub App
12+
description: Installation access token for the GitHub App
1313
runs:
1414
using: docker
1515
image: Dockerfile
1616
args:
1717
- ${{ inputs.private-key }}
18-
- ${{ inputs.app-id }}
18+
- ${{ inputs.app-id }}
19+
author: Christer Edvartsen <[email protected]>
20+
branding:
21+
icon: unlock
22+
color: red

get-installation-token.sh get-installation-access-token.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ token=$(curl -s -X POST \
2020
https://api.github.com/app/installations/${installation_id}/access_tokens | jq -r .token)
2121

2222
if [ "$token" = "null" ]; then
23-
echo "Unable to generate installation token"
23+
echo "Unable to generate installation access token"
2424
exit 1
2525
fi
2626

0 commit comments

Comments
 (0)