803e078eb5
should be available now as per https://github.com/actions/runner/issues/2619#issuecomment-1679003443
21 lines
490 B
YAML
21 lines
490 B
YAML
name: "Create GitHub App Token"
|
|
description: "GitHub Action for creating a GitHub App installation access token"
|
|
author: "Gregor Martynus and Parker Brown"
|
|
branding:
|
|
icon: "lock"
|
|
color: "gray-dark"
|
|
inputs:
|
|
app_id:
|
|
description: "GitHub App ID"
|
|
required: true
|
|
private_key:
|
|
description: "GitHub App private key"
|
|
required: true
|
|
outputs:
|
|
token:
|
|
description: "GitHub installation access token"
|
|
runs:
|
|
using: "node20"
|
|
main: "dist/main.cjs"
|
|
post: "dist/post.cjs"
|