forked from EndBug/project-fields
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
36 lines (31 loc) · 935 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
32
33
34
35
36
name: Project Fields
description: A GitHub Action to interact with project fields
inputs:
operation:
description: 'The type of field operation. Valid options are "get", "set", "clear"'
required: true
fields:
description: 'A comma-separated list of fields to get or update'
required: true
github_token:
description: 'The GitHub token to use for authentication'
required: true
project_url:
description: 'The URL of the project'
required: true
resource_url:
description: 'The URL of the issue/PR to get or update'
required: true
default: ${{ github.event.issue.html_url || github.event.pull_request.html_url }}
values:
description: 'A comma-separated list of values to update the fields with'
required: false
outputs:
values:
description: 'The current values of the fields'
runs:
using: node20
main: build/index.js
branding:
icon: layout
color: gray-dark