Compare commits

..

1 commit

Author SHA1 Message Date
e7cf864c29
feat(ci): report package sizes
All checks were successful
/ check (push) Successful in 48s
/ build (audiomenu) (push) Successful in 2s
/ build (docs) (push) Successful in 1s
/ build (jpassmenu) (push) Successful in 1s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 2s
/ build (nvim) (push) Successful in 1s
/ report-size (push) Successful in 1s
Added as a comment to the current pull request
2024-12-15 13:32:12 +01:00

View file

@ -72,10 +72,10 @@ if [ "${CI-false}" = "true" ]; then
pr_number=$(curl -X 'GET' \
"$GITHUB_API_URL/repos/$GITHUB_REPOSITORY/pulls?state=open&sort=recentupdate" \
-H 'accept: application/json' |
jq --arg head_ref "$GITHUB_HEAD_REF" '.[] | select(.head.ref == $head_ref) | .number')
jq --arg head_ref "$GITHUB_REF_NAME" '.[] | select(.head.ref == $head_ref) | .number')
if [ -z "$pr_number" ]; then
echo "No PR created for this pull request"
echo "No PR created for this commit"
exit 0
fi