generated from dsanders11/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
26 lines (24 loc) · 761 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
name: Draft Issues Completed By
description: Change a project field on draft issues when linked pull requests are merged
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
field:
description: Project field to set once completed
required: false
default: Status
field-value:
description: Value to set project field to
required: true
runs:
using: node20
main: ../dist/completed-by.js