generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 14
/
action.yml
43 lines (43 loc) · 1.15 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: 'GitHub Forker'
author: 'lelia'
branding:
icon: 'git-branch'
color: 'green'
description: 'GitHub action for automating fork creation'
inputs:
token:
description: 'GitHub API token with forking permissions'
required: true
owner:
description: 'Owner of GitHub repository being forked'
required: true
repo:
description: 'GitHub repository being forked'
required: true
org:
description: 'GitHub organization to fork the repository into'
required: false
user:
description: 'GitHub user requesting the fork'
required: false
checkUser:
description: 'Enforce organization membership for GitHub user'
required: false
default: false
promoteUser:
description: 'Promote GitHub user to admin of the forked repo'
required: false
default: false
licenseAllowlist:
description: 'List of allowed licenses for repository being forked'
required: false
default: 'undefined'
targetInstanceUrl:
description: 'GitHub target instance that will have the fork'
required: false
outputs:
forkUrl:
description: 'The URL of the forked repository'
runs:
using: 'node16'
main: 'dist/index.js'