[Decoder Feedback]: LGB 55525 turnout decoder (4x turnouts) #551
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
# This workflow is to be used for all repositories to integrate with the DCC++ EX Beta Project. | |
# It will add all issues and pull requests for a repository to the project, and put in the correct status. | |
# | |
# Ensure "REPO_LABEL" is updated with the correct label for the repo stream of work. | |
name: Add Issue or Pull Request to Project | |
env: | |
REPO_LABEL: ${{ secrets.PROJECT_STREAM_LABEL }} | |
PROJECT_NUMBER: 7 | |
ORG: DCC-EX | |
on: | |
issues: | |
types: | |
- opened | |
pull_request_target: | |
types: | |
- ready_for_review | |
- opened | |
- review_requested | |
jobs: | |
add_to_project: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add labels | |
uses: andymckay/labeler@master | |
with: | |
add-labels: ${{ env.REPO_LABEL }} | |
- name: Generate token | |
id: generate_token | |
uses: tibdex/github-app-token@36464acb844fc53b9b8b2401da68844f6b05ebb0 | |
with: | |
app_id: ${{ secrets.PROJECT_APP_ID }} | |
private_key: ${{ secrets. PROJECT_APP_KEY }} | |
- name: Get project data | |
env: | |
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} | |
run: | | |
gh api graphql -f query=' | |
query($org: String!, $number: Int!) { | |
organization(login: $org){ | |
projectV2(number: $number) { | |
id | |
fields(first:20) { | |
nodes { | |
... on ProjectV2Field { | |
id | |
name | |
} | |
... on ProjectV2SingleSelectField { | |
id | |
name | |
options { | |
id | |
name | |
} | |
} | |
} | |
} | |
} | |
} | |
}' -f org=$ORG -F number=$PROJECT_NUMBER > project_data.json | |
echo 'PROJECT_ID='$(jq '.data.organization.projectV2.id' project_data.json) >> $GITHUB_ENV | |
echo 'STATUS_FIELD_ID='$(jq '.data.organization.projectV2.fields.nodes[] | select(.name== "Status") | .id' project_data.json) >> $GITHUB_ENV | |
echo 'BACKLOG_OPTION_ID='$(jq '.data.organization.projectV2.fields.nodes[] | select(.name== "Status") |.options[] | select(.name=="Backlog") |.id' project_data.json) >> $GITHUB_ENV | |
echo 'TO_DO_OPTION_ID='$(jq '.data.organization.projectV2.fields.nodes[] | select(.name== "Status") |.options[] | select(.name=="To Do") |.id' project_data.json) >> $GITHUB_ENV | |
echo 'NEEDS_REVIEW_OPTION_ID='$(jq '.data.organization.projectV2.fields.nodes[] | select(.name== "Status") |.options[] | select(.name=="Needs Review") |.id' project_data.json) >> $GITHUB_ENV | |
echo 'IN_PROGRESS_OPTION_ID='$(jq '.data.organization.projectV2.fields.nodes[] | select(.name== "Status") |.options[] | select(.name=="In Progress") |.id' project_data.json) >> $GITHUB_ENV | |
- name: Add issue to project | |
env: | |
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} | |
ITEM_ID: ${{ github.event.issue.node_id }} | |
if: github.event_name == 'issues' | |
run: | | |
project_item_id="$( gh api graphql -f query=' | |
mutation($project:ID!, $item:ID!) { | |
addProjectV2ItemById(input: {projectId: $project, contentId: $item}) { | |
item { | |
id | |
} | |
} | |
}' -f project=$PROJECT_ID -f item=$ITEM_ID --jq '.data.addProjectV2ItemById.item.id')" | |
echo 'PROJECT_ITEM_ID='$project_item_id >> $GITHUB_ENV | |
- name: Add PR to project | |
env: | |
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} | |
ITEM_ID: ${{ github.event.pull_request.node_id }} | |
if: github.event_name == 'pull_request' | |
run: | | |
project_item_id="$( gh api graphql -f query=' | |
mutation($project:ID!, $item:ID!) { | |
addProjectV2ItemById(input: {projectId: $project, contentId: $item}) { | |
item { | |
id | |
} | |
} | |
}' -f project=$PROJECT_ID -f item=$ITEM_ID --jq '.data.addProjectV2ItemById.item.id')" | |
echo 'PROJECT_ITEM_ID='$project_item_id >> $GITHUB_ENV | |
- name: Set status - To Do | |
env: | |
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} | |
if: github.event_name == 'issues' && (contains(github.event.*.labels.*.name, 'Bug') || contains(github.event.*.labels.*.name, 'Support Request')) | |
run: | | |
gh api graphql -f query=' | |
mutation( | |
$project: ID! | |
$item: ID! | |
$status_field: ID! | |
$status_value: String! | |
){ | |
set_status: updateProjectV2ItemFieldValue(input: { | |
projectId: $project | |
itemId: $item | |
fieldId: $status_field | |
value: { | |
singleSelectOptionId: $status_value | |
} | |
}) { | |
projectV2Item { | |
id | |
} | |
} | |
}' -f project=$PROJECT_ID -f item=$PROJECT_ITEM_ID -f status_field=$STATUS_FIELD_ID -f status_value=${{ env.TO_DO_OPTION_ID }} --silent | |
- name: Set status - Review | |
env: | |
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} | |
if: github.event_name == 'issues' && (contains(github.event.*.labels.*.name, 'Unit Tested') || contains(github.event.*.labels.*.name, 'Regression Tested') || contains(github.event.*.labels.*.name, 'Needs Review')) || github.event_name == 'pull_request' | |
run: | | |
gh api graphql -f query=' | |
mutation( | |
$project: ID! | |
$item: ID! | |
$status_field: ID! | |
$status_value: String! | |
){ | |
set_status: updateProjectV2ItemFieldValue(input: { | |
projectId: $project | |
itemId: $item | |
fieldId: $status_field | |
value: { | |
singleSelectOptionId: $status_value | |
} | |
}) { | |
projectV2Item { | |
id | |
} | |
} | |
}' -f project=$PROJECT_ID -f item=$PROJECT_ITEM_ID -f status_field=$STATUS_FIELD_ID -f status_value=${{ env.NEEDS_REVIEW_OPTION_ID }} --silent |