From 57c5af990532653232e92b6b76c17c70afc3e28d Mon Sep 17 00:00:00 2001 From: eric sciple Date: Tue, 21 Jan 2020 01:35:20 -0500 Subject: [PATCH] . --- dist/index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dist/index.js b/dist/index.js index 1919193..c58ef35 100644 --- a/dist/index.js +++ b/dist/index.js @@ -12757,6 +12757,11 @@ function getInputs() { if (isWorkflowRepository) { result.ref = github.context.ref; result.commit = github.context.sha; + // Some events have an unqualifed ref. For example when a PR is merged (pull_request closed event), + // the ref is unqualifed like "master" instead of "refs/heads/master". + if (result.commit && result.ref && !result.ref.startsWith('refs/')) { + result.ref = `refs/heads/${result.ref}`; + } } if (!result.ref && !result.commit) { result.ref = 'refs/heads/master';