From a0a2d834550ad6e6f41d728ed433078dcd005955 Mon Sep 17 00:00:00 2001 From: Jarno Laitinen Date: Wed, 18 Feb 2026 20:12:41 +0200 Subject: [PATCH] Add PR number echo to GitHub Actions workflow --- github-actions/templates/multi-event.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/github-actions/templates/multi-event.yml b/github-actions/templates/multi-event.yml index a3275be38..ab54ffe33 100644 --- a/github-actions/templates/multi-event.yml +++ b/github-actions/templates/multi-event.yml @@ -16,4 +16,5 @@ jobs: echo "REF: $GITHUB_REF" echo "Job ID: $GITHUB_JOB" echo "Action: $GITHUB_ACTION" - echo "Actor: $GITHUB_ACTOR" \ No newline at end of file + echo "Actor: $GITHUB_ACTOR" + echo "PR Number: ${{ github.event.pull_request.number }}" \ No newline at end of file