generated from dsanders11/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
31 lines (28 loc) · 861 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
29
30
31
name: Close Project
description: Close or reopen 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
closed:
description: Closed state of the project - set false to reopen a closed project
required: false
default: true
fail-if-project-not-found:
description: Should the action fail if the project is not found
required: false
default: true
outputs:
id:
description: The global ID for the edited project
runs:
using: node20
main: ../dist/close-project.js