Skip to content

Commit

Permalink
Update 99-add-issue-to-project.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzke authored Dec 11, 2024
1 parent de98471 commit 68eabf1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/99-add-issue-to-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ jobs:
columns=$(curl -s -H "Authorization: Bearer $GITHUB_TOKEN" \
-H "Accept: application/vnd.github.v3+json" \
"https://api.github.com/projects/$DEV_PROJECT_ID/columns")
column_id=$(echo $columns | jq -r '.[] | select(.name == "No Status") | .id')
echo "Columns Response: $columns"
column_id=$(echo $columns | jq -r 'map(select(.name == "No Status")) | .[0].id')
echo "COLUMN_ID=$column_id" >> $GITHUB_ENV
- name: Add issue to project
Expand Down

0 comments on commit 68eabf1

Please sign in to comment.