forked from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathaction.yml
More file actions
25 lines (25 loc) · 690 Bytes
/
action.yml
File metadata and controls
25 lines (25 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: Create GitHub App Installation Token
author: jon wong <j@jnwng.com>
description: A GitHub Action to retrieve a GitHub App's installation access token, making it easy to compose GitHub Actions workflows.
branding:
color: green
icon: link
inputs:
appId:
description: The GitHub App ID
required: true
installationId:
description: The GitHub App installation ID
required: true
privateKey:
description: The private key used to sign the JWT
required: true
baseUrl:
description: Optional base url for github requests
required: false
outputs:
token:
description: The generated RS256-signed JWT
runs:
using: "node16"
main: "dist/index.js"