12aa81137b
https://github.com/marketplace/actions/github-app-token is taken, hence the rename --------- Co-authored-by: Parker Brown <17183625+parkerbxyz@users.noreply.github.com>
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: "node16"
|
|
main: "dist/main.cjs"
|
|
post: "dist/post.cjs"
|