summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Maischein <corion@corion.net>2019-11-17 23:22:24 +0100
committerKarl Williamson <khw@cpan.org>2019-11-19 08:19:05 -0800
commitc1df7f7503d7b893be580201c1ec4bd86c863048 (patch)
tree3a0872563a1e8ed2e02fc554463b278f6056a99c
parentda2e1dd674405d41415a929c2658c0e5aa69836d (diff)
downloadperl-c1df7f7503d7b893be580201c1ec4bd86c863048.tar.gz
Output information on the current pull request
-rw-r--r--.github/workflows/smoke-information.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/smoke-information.yml b/.github/workflows/smoke-information.yml
index fafb75af24..82ef310ff2 100644
--- a/.github/workflows/smoke-information.yml
+++ b/.github/workflows/smoke-information.yml
@@ -22,4 +22,7 @@ jobs:
fetch-depth: 10
- name: Involved authors
run: |
- if \! -z "${GITHUB_HEAD_REF}" ; then git log --pretty=format:"Author: %an <%ae>" ${GITHUB_BASE_REF}..${GITHUB_HEAD_REF}; fi
+ if [ -n "${GITHUB_HEAD_REF}" ]; then
+ echo "Pull request"
+ git log --pretty=format:"Author: %an <%ae>" ${GITHUB_BASE_REF}..${GITHUB_HEAD_REF}
+ fi