Skip to content

Commit

Permalink
Test GH Workflow - Mark Under Review - Attempt node-red#18
Browse files Browse the repository at this point in the history
  • Loading branch information
joepavitt committed Mar 27, 2024
1 parent 4c2cdcb commit 9e0eba5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/record-in-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,10 @@ jobs:
STATUS_FIELD_ID: PVTSSF_lAHOBepif84AfH1xzgUjmnw
UNDER_REVIEW_OPTION_ID: 5fce39d2
run: |
items_ids = echo '${{ env.LINKED_ISSUE_IDs }}' | jq map(select(.projectItems.nodes[].project.id == $PROJECT_ID)) | jq -r '.[] | .id'
echo '${{ env.LINKED_ISSUE_IDs }}' | jq -r '.[] | .id' | while read ISSUE_ID; do
echo "ISSUE_ID=$ISSUE_ID"
project_items = echo '${{ env.LINKED_ISSUE_IDs }}' | jq '.[] | .projectItems.nodes[]'
item_ids = echo $project_items | jq '.[] | .projectItems.nodes[] | select(.project.id == "$PROJECT_ID") | .id'
echo $item_ids | while read ISSUE_ITEM_ID; do
echo "ISSUE_ITEM_ID=$ISSUE_ITEM_ID"
updatedAt="$( gh api graphql -f query='
mutation($issueId:ID!, $projectId:ID!) {
updateProjectV2ItemFieldValue(
Expand Down

0 comments on commit 9e0eba5

Please sign in to comment.