Skip to content

Commit

Permalink
feedback js
Browse files Browse the repository at this point in the history
  • Loading branch information
neuronull committed Aug 1, 2023
1 parent 8670c2e commit 5cba8bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gardener_issue_comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
# Extract the item in the Gardener project
project=$(echo $project_items | jq -c -r --arg project_id $project_id '.data.node.projectItems.nodes[] | select(.project.id == $project_id)')
current_status=$(echo $project | jq -c '.fieldValueByName.name')
current_status=$(echo $project | jq -c -r '.fieldValueByName.name')
item_id=$(echo $project | jq -c '.id')
if [ -z "$current_status" ] ; then
Expand All @@ -89,7 +89,7 @@ jobs:
echo "Found issue on Gardener board. Current issue status is: '${current_status}'"
fi
if [ "$current_status" = "\"Blocked / Waiting\"" ] ; then
if [ "$current_status" = "Blocked / Waiting" ] ; then
echo "Moving issue from 'Blocked / Waiting' to 'Triage'"
gh api graphql -f query='
mutation($project_id: ID!, $item_id: ID!, $field_id: ID!, $option_id: String) {
Expand Down

0 comments on commit 5cba8bf

Please sign in to comment.