-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
39 lines (36 loc) · 1.04 KB
/
action.yml
File metadata and controls
39 lines (36 loc) · 1.04 KB
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
name: Get Project
description: Get 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
outputs:
id:
description: The global ID for the project
closed:
description: The closed state of the project
field-count:
description: The number of fields on the project
item-count:
description: The number of items in the project
public:
description: The public visibility of the project
readme:
description: The readme description of the project
description:
description: The short description of the project
title:
description: The title of the project
url:
description: The URL of the project
runs:
using: node24
main: ../dist/get-project.js