-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update ProjectNext -> ProjectV2 (#140343)
- Loading branch information
1 parent
fb157fa
commit 02a06f1
Showing
1 changed file
with
16 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,36 +12,41 @@ jobs: | |
- uses: octokit/[email protected] | ||
id: add_to_project | ||
with: | ||
headers: '{"GraphQL-Features": "projects_next_graphql"}' | ||
query: | | ||
mutation add_to_project($projectid:ID!,$contentid:ID!) { | ||
addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) { | ||
projectNextItem { | ||
id | ||
addProjectV2ItemById(input:{projectId:$projectid contentId:$contentid}) { | ||
item { | ||
... on ProjectV2Item { | ||
id | ||
} | ||
} | ||
} | ||
} | ||
projectid: ${{ env.PROJECT_ID }} | ||
contentid: ${{ github.event.issue.node_id }} | ||
env: | ||
PROJECT_ID: "PN_kwDOAGc3Zs0VSg" | ||
PROJECT_ID: "PVT_kwDOAGc3Zs0VSg" | ||
GITHUB_TOKEN: ${{ secrets.APM_TECH_KIBANA_USER_TOKEN }} | ||
- uses: octokit/[email protected] | ||
id: label_team | ||
with: | ||
headers: '{"GraphQL-Features": "projects_next_graphql"}' | ||
query: | | ||
mutation label_team($projectid:ID!,$itemid:ID!,$fieldid:ID!,$value:String!) { | ||
updateProjectNextItemField(input: { projectId:$projectid itemId:$itemid fieldId:$fieldid value:$value }) { | ||
projectNextItem { | ||
updateProjectV2ItemFieldValue(input: { projectId:$projectid itemId:$itemid fieldId:$fieldid value:{singleSelectOptionId: $value} }) { | ||
projectV2Item { | ||
id | ||
content { | ||
... on Issue { | ||
number | ||
} | ||
} | ||
} | ||
} | ||
} | ||
projectid: ${{ env.PROJECT_ID }} | ||
itemid: ${{ fromJSON(steps.add_to_project.outputs.data).addProjectNextItem.projectNextItem.id }} | ||
fieldid: "MDE2OlByb2plY3ROZXh0RmllbGQ0NDE0Ng==" | ||
itemid: ${{ fromJSON(steps.add_to_project.outputs.data).addProjectV2ItemById.item.id }} | ||
fieldid: "PVTSSF_lADOAGc3Zs0VSs2scg" | ||
value: "c33f5c54" | ||
env: | ||
PROJECT_ID: "PN_kwDOAGc3Zs0VSg" | ||
PROJECT_ID: "PVT_kwDOAGc3Zs0VSg" | ||
GITHUB_TOKEN: ${{ secrets.APM_TECH_KIBANA_USER_TOKEN }} |