-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update project-automation.yml (#3275)
- Loading branch information
1 parent
439d0fc
commit 58b0a40
Showing
1 changed file
with
68 additions
and
21 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 |
---|---|---|
@@ -1,51 +1,98 @@ | ||
name: Project automation | ||
# This workflow is used to add new issues to GitHub GraphSDKs Project | ||
|
||
name: Add Issue or PR to project | ||
on: | ||
issues: | ||
types: | ||
- opened | ||
pull_request: | ||
types: | ||
- opened | ||
branches: | ||
- "main" | ||
|
||
permissions: | ||
issues: write | ||
repository-projects: read | ||
|
||
repository-projects: write | ||
jobs: | ||
track_issue: | ||
if: github.actor != 'dependabot[bot]' && github.event.pull_request.head.repo.fork == false | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Generate token | ||
id: generate_token | ||
uses: actions/create-github-app-token@v1 | ||
with: | ||
app-id: ${{ secrets.GRAPHBOT_APP_ID }} | ||
private-key: ${{ secrets.GRAPHBOT_APP_PEM }} | ||
|
||
- name: Get project data | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PROJECT_ACCESS_TOKEN }} | ||
PROJECT_ORGANIZATION: ${{ secrets.PROJECT_ORGANIZATION }} | ||
PROJECT_NUMBER: ${{ secrets.PROJECT_NUMBER }} | ||
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} | ||
ORGANIZATION: microsoftgraph | ||
PROJECT_NUMBER: 55 | ||
run: | | ||
gh api graphql -f query=' | ||
query($org: String!, $number: Int!) { | ||
organization(login: $org){ | ||
projectNext(number: $number) { | ||
projectV2(number: $number) { | ||
id | ||
fields(first:20) { | ||
nodes { | ||
id | ||
name | ||
settings | ||
... on ProjectV2SingleSelectField { | ||
id | ||
name | ||
options { | ||
id | ||
name | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}' -f org=$PROJECT_ORGANIZATION -F number=$PROJECT_NUMBER > project_data.json | ||
}' -f org=$ORGANIZATION -F number=$PROJECT_NUMBER > project_data.json | ||
echo 'PROJECT_ID='$(jq '.data.organization.projectNext.id' project_data.json) >> $GITHUB_ENV | ||
echo 'PROJECT_ID='$(jq '.data.organization.projectV2.id' project_data.json) >> $GITHUB_ENV | ||
echo 'LANGUAGE_FIELD_ID='$(jq '.data.organization.projectV2.fields.nodes[] | select(.name== "Language") | .id' project_data.json) >> $GITHUB_ENV | ||
echo 'LANGUAGE_OPTION_ID='$(jq '.data.organization.projectV2.fields.nodes[] | select(.name== "Language") | .options[] | select(.name=="Microsoft Graph Toolkit") |.id' project_data.json) >> $GITHUB_ENV | ||
- name: Add issue to project | ||
- name: Add Issue or PR to project | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PROJECT_ACCESS_TOKEN }} | ||
ISSUE_ID: ${{ github.event.issue.node_id }} | ||
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} | ||
ISSUE_ID: ${{ github.event_name == 'issues' && github.event.issue.node_id || github.event.pull_request.node_id }} | ||
run: | | ||
item_id="$( gh api graphql -f query=' | ||
mutation($project:ID!, $issue:ID!) { | ||
addProjectV2ItemById(input: {projectId: $project, contentId: $issue}) { | ||
item { | ||
id | ||
} | ||
} | ||
}' -f project=$PROJECT_ID -f issue=$ISSUE_ID --jq '.data.addProjectV2ItemById.item.id')" | ||
echo 'ITEM_ID='$item_id >> $GITHUB_ENV | ||
- name: Set Language | ||
env: | ||
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} | ||
run: | | ||
gh api graphql -f query=' | ||
mutation($project:ID!, $issue:ID!) { | ||
addProjectNextItem(input: {projectId: $project, contentId: $issue}) { | ||
projectNextItem { id } | ||
} | ||
}' -f project=$PROJECT_ID -f issue=$ISSUE_ID | ||
mutation ( | ||
$project: ID! | ||
$item: ID! | ||
$language_field: ID! | ||
$language_value: String! | ||
) { | ||
set_status: updateProjectV2ItemFieldValue(input: { | ||
projectId: $project | ||
itemId: $item | ||
fieldId: $language_field | ||
value: {singleSelectOptionId: $language_value} | ||
}) { | ||
projectV2Item { | ||
id | ||
} | ||
} | ||
}' -f project=$PROJECT_ID -f item=$ITEM_ID -f language_field=$LANGUAGE_FIELD_ID -f language_value=${{ env.LANGUAGE_OPTION_ID }} --silent |