generated from dsanders11/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
65 lines (62 loc) · 1.94 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Copy Project
description: Copy a GitHub project
author: David Sanders
inputs:
token:
description: A GitHub access token - either a classic PAT or a GitHub app installation token
required: true
owner:
description: The owner of the project - either an organization or a user
required: false
default: ${{ github.repository_owner }}
project-number:
description: The project number from the project's URL
required: true
target-owner:
description: The owner of the copied project - either an organization or a user, if different from `owner`
required: false
title:
description: Title for the new project
required: true
drafts:
description: Include draft issues when copying
required: false
default: false
link-to-repository:
description: Repository to link the project to, in the format `owner/name`
required: false
link-to-team:
description: Team to link the project to, in the format `org/team`
required: false
template-view:
description: A `mustache` template view to be used for template interpolation on draft issues
required: false
public:
description: Set the project to public or private
required: false
outputs:
id:
description: The global ID for the new project
closed:
description: The closed state of the new project
field-count:
description: The number of fields on the new project
item-count:
description: The number of items in the new project
number:
description: The project number for the new project
owner:
description: The owner of the new project
public:
description: The public visibility of the new project
readme:
description: The readme description of the new project
description:
description: The short description of the new project
title:
description: The title of the new project
url:
description: The URL of the new project
runs:
using: node20
main: ../dist/copy-project.js