mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-15 01:48:34 -07:00
ci: fix update of plugin or theme fields
See [1] for the reference of value field (ProjectV2FieldValue type), and [2] for sample application code. [1] https://docs.github.com/en/graphql/reference/input-objects#projectv2fieldvalue [2] https://docs.github.com/en/enterprise-cloud@latest/issues/planning-and-tracking-with-projects/automating-your-project/automating-projects-using-actions#example-workflow-authenticating-with-a-github-app
This commit is contained in:
parent
b3b336b0f9
commit
1342459b15
8
.github/workflows/project.yml
vendored
8
.github/workflows/project.yml
vendored
@ -113,7 +113,9 @@ jobs:
|
|||||||
projectId: $project
|
projectId: $project
|
||||||
itemId: $item
|
itemId: $item
|
||||||
fieldId: $plugin_field
|
fieldId: $plugin_field
|
||||||
value: $plugin_value
|
value: {
|
||||||
|
text: $plugin_value
|
||||||
|
}
|
||||||
}) {
|
}) {
|
||||||
projectV2Item {
|
projectV2Item {
|
||||||
id
|
id
|
||||||
@ -123,7 +125,9 @@ jobs:
|
|||||||
projectId: $project
|
projectId: $project
|
||||||
itemId: $item
|
itemId: $item
|
||||||
fieldId: $theme_field
|
fieldId: $theme_field
|
||||||
value: $theme_value
|
value: {
|
||||||
|
text: $theme_value
|
||||||
|
}
|
||||||
}) {
|
}) {
|
||||||
projectV2Item {
|
projectV2Item {
|
||||||
id
|
id
|
||||||
|
Loading…
Reference in New Issue
Block a user