generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
32 lines (31 loc) · 1.18 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
name: Update Project v2 Item Field
description: Automatically update a field on a GitHub project v2 item
author: nipe0324
branding:
icon: table
color: green
inputs:
project-url:
required: true
description: 'URL of the project vw to update item field'
github-token:
required: true
description: 'A GitHub personal access token with write access to the project'
field-name:
required: true
description: 'The name of the field to update. Supported field types are `text`, `number`, `date`, `single_select` and `iteration`'
field-value:
required: false
description: 'The value of the field to update. (`field-value` or `field-value-script` is required)'
field-value-script:
required: false
description: 'The script that returns the value of the field to update. (`field-value` or `field-value-script` is required)'
skip-update-script:
required: false
description: 'The script that returns a boolean value to determine whether to update the field. If the script returns `true`, the field will not be updated'
all-items:
required: false
description: 'Update all items in the project (default: false)'
runs:
using: node20
main: dist/index.js