We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de98471 commit 68eabf1Copy full SHA for 68eabf1
.github/workflows/99-add-issue-to-project.yml
@@ -36,7 +36,10 @@ jobs:
36
columns=$(curl -s -H "Authorization: Bearer $GITHUB_TOKEN" \
37
-H "Accept: application/vnd.github.v3+json" \
38
"https://api.github.com/projects/$DEV_PROJECT_ID/columns")
39
- column_id=$(echo $columns | jq -r '.[] | select(.name == "No Status") | .id')
+
40
+ echo "Columns Response: $columns"
41
42
+ column_id=$(echo $columns | jq -r 'map(select(.name == "No Status")) | .[0].id')
43
echo "COLUMN_ID=$column_id" >> $GITHUB_ENV
44
45
- name: Add issue to project
0 commit comments