fix(action-config): prepare for release to marketplace (#10)
test / test (push) Has been cancelled

https://github.com/marketplace/actions/github-app-token is taken, hence
the rename

---------

Co-authored-by: Parker Brown <[email protected]>
This commit is contained in:
Gregor Martynus
2023-08-21 14:32:39 -07:00
committed by GitHub
co-authored by Parker Brown
parent 950f8a0559
commit 12aa81137b
+12 -9
View File
@@ -1,17 +1,20 @@
name: 'github-app-token' name: "Create GitHub App Token"
description: '' description: "GitHub Action for creating a GitHub App installation access token"
author: 'Gregor Martynus and Parker Brown' author: "Gregor Martynus and Parker Brown"
branding:
icon: "lock"
color: "gray-dark"
inputs: inputs:
app_id: app_id:
description: 'GitHub app ID' description: "GitHub App ID"
required: true required: true
private_key: private_key:
description: 'GitHub app private key' description: "GitHub App private key"
required: true required: true
outputs: outputs:
token: token:
description: 'GitHub installation access token' description: "GitHub installation access token"
runs: runs:
using: 'node16' using: "node16"
main: 'dist/main.cjs' main: "dist/main.cjs"
post: 'dist/post.cjs' post: "dist/post.cjs"