summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Maischein <corion@corion.net>2019-11-17 23:22:01 +0100
committerKarl Williamson <khw@cpan.org>2019-11-19 08:19:05 -0800
commitda2e1dd674405d41415a929c2658c0e5aa69836d (patch)
tree7a31dd59732217d0552f3a300771c998e08ed174
parent1aa128f66c4acf367d7ba3ed640b35eeb61165ac (diff)
downloadperl-da2e1dd674405d41415a929c2658c0e5aa69836d.tar.gz
Output information on the current pull request
-rw-r--r--.github/workflows/smoke-information.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/smoke-information.yml b/.github/workflows/smoke-information.yml
new file mode 100644
index 0000000000..fafb75af24
--- /dev/null
+++ b/.github/workflows/smoke-information.yml
@@ -0,0 +1,25 @@
+name: smoke-information
+
+on:
+ push:
+ branches:
+ - '*'
+ tags-ignore:
+ - '*'
+ pull_request:
+
+env:
+ PERL_SKIP_TTY_TEST: 1
+
+jobs:
+ perl:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@master
+ with:
+ 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