-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
28 lines (27 loc) · 822 Bytes
/
action.yml
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
26
27
28
name: "Create a GitHub App installation access token"
description: "GitHub Action for creating a GitHub App installation access token"
author: "githubofkrishnadhas"
branding:
icon: 'activity'
color: 'gray-dark'
inputs:
github_app_id:
description: "Github App ID"
required: true
github_app_private_key:
description: "Github App private key"
required: true
owner:
description: "The owner of the GitHub App installation. If empty, defaults to the current repository owner"
required: false
repositories:
description: "Comma-separated list of repositories to grant access to"
required: false
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.github_app_id }}
- ${{ inputs.github_app_private_key }}
- ${{ inputs.owner }}
- ${{ inputs.repositories }}