mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
Fix types for graphql actions (#126589)
This commit is contained in:
parent
c8a206545a
commit
a228d60864
2 changed files with 3 additions and 3 deletions
2
.github/workflows/add-to-fleet-project.yml
vendored
2
.github/workflows/add-to-fleet-project.yml
vendored
|
@ -20,7 +20,7 @@ jobs:
|
|||
with:
|
||||
headers: '{"GraphQL-Features": "projects_next_graphql"}'
|
||||
query: |
|
||||
mutation add_to_project($projectid:String!,$contentid:String!) {
|
||||
mutation add_to_project($projectid: ID!, $contentid: ID!) {
|
||||
addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) {
|
||||
projectNextItem {
|
||||
id
|
||||
|
|
4
.github/workflows/label-qa-fixed-in.yml
vendored
4
.github/workflows/label-qa-fixed-in.yml
vendored
|
@ -76,12 +76,12 @@ jobs:
|
|||
id: add_labels_to_closed_issue
|
||||
with:
|
||||
query: |
|
||||
mutation add_label($issueid:String!, $labelids:[String!]!) {
|
||||
mutation add_label($issueid: ID!, $labelids:[ID!]!) {
|
||||
addLabelsToLabelable(input: {labelableId: $issueid, labelIds: $labelids}) {
|
||||
clientMutationId
|
||||
}
|
||||
}
|
||||
issueid: ${{ matrix.issueNodeId }}
|
||||
labelids: ${{ needs.fetch_issues_to_label.outputs.label_ids }}
|
||||
labelids: ${{ fromJSON(needs.fetch_issues_to_label.outputs.label_ids) }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue