From 5c40a31e3e2ed0ea28f8ba68deca41d05fdf2e71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Mon, 10 Mar 2025 23:49:07 +0100 Subject: [PATCH] fix: move logs up Otherwise they are missing from the failure case --- action.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 57a7048..66238ce 100644 --- a/action.yml +++ b/action.yml @@ -86,6 +86,10 @@ runs: pr_number=$(echo "$prs" | jq --arg head_ref "$head_ref" '.[] | select(.head.ref == $head_ref) | .number') + # This seems to create the file??? + log "GITHUB_OUTPUT=$GITHUB_OUTPUT" + log "$(ls -l "$GITHUB_OUTPUT")" + # Protect against running before a PR is made or if it is triggered on the main branch if [ -z "$pr_number" ]; then warn "No PR created for this commit" @@ -96,8 +100,6 @@ runs: log "Retrieved index: $pr_number" log "Expected PR URL: $GITHUB_SERVER_URL/$GITHUB_REPOSITORY/pulls/$pr_number" - log "GITHUB_OUTPUT=$GITHUB_OUTPUT" - log "$(ls -l "$GITHUB_OUTPUT")" echo "pr-number=$pr_number" >> "$GITHUB_OUTPUT" - name: Find previous comment (if present) # We want to generate a comment, and we we able to fin the PR number