Compare commits
1 commit
c17d7c4c36
...
1ab8e2da67
Author | SHA1 | Date | |
---|---|---|---|
1ab8e2da67 |
1 changed files with 4 additions and 3 deletions
|
@ -24,7 +24,7 @@ if [ "$CI" = "true" ]; then
|
||||||
jq --arg head_ref "$GITHUB_HEAD_REF" '.[] | select(.head.ref == $head_ref) | .number')
|
jq --arg head_ref "$GITHUB_HEAD_REF" '.[] | select(.head.ref == $head_ref) | .number')
|
||||||
echo "Retrieved index: $pr_number"
|
echo "Retrieved index: $pr_number"
|
||||||
echo "Expected PR URL: $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/pulls/$pr_number"
|
echo "Expected PR URL: $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/pulls/$pr_number"
|
||||||
|
echo 'Generating comment body'
|
||||||
comment=$(
|
comment=$(
|
||||||
cat <<-EOF
|
cat <<-EOF
|
||||||
### NixOS Configurations sizes
|
### NixOS Configurations sizes
|
||||||
|
@ -36,8 +36,9 @@ if [ "$CI" = "true" ]; then
|
||||||
$(package_size_table)
|
$(package_size_table)
|
||||||
EOF
|
EOF
|
||||||
)
|
)
|
||||||
echo "Posting comment: $comment"
|
echo 'Posting comment:'
|
||||||
curl -X 'POST' \
|
echo "$comment"
|
||||||
|
curl -o - -I -X 'POST' \
|
||||||
"$GITHUB_API_URL/repos/$GITHUB_REPOSITORY/issues/$pr_number/comments?token=$GITHUB_TOKEN" \
|
"$GITHUB_API_URL/repos/$GITHUB_REPOSITORY/issues/$pr_number/comments?token=$GITHUB_TOKEN" \
|
||||||
-H 'accept: application/json' \
|
-H 'accept: application/json' \
|
||||||
-d "$(echo '{}' | jq --arg comment "$comment" '.body=$comment')"
|
-d "$(echo '{}' | jq --arg comment "$comment" '.body=$comment')"
|
||||||
|
|
Loading…
Add table
Reference in a new issue