ci: push, pull: debug logging for commit range
This commit is contained in:
parent
7440075903
commit
5261ecabe0
8
.github/workflows/pull.yml
vendored
8
.github/workflows/pull.yml
vendored
@ -89,6 +89,14 @@ jobs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
RANGE=${BEFORE:-origin/master}..${GITHUB_HEAD_REF:+origin/$GITHUB_HEAD_REF}
|
RANGE=${BEFORE:-origin/master}..${GITHUB_HEAD_REF:+origin/$GITHUB_HEAD_REF}
|
||||||
|
echo debug: BEFORE: $BEFORE
|
||||||
|
echo debug: GITHUB_HEAD_REF: $GITHUB_HEAD_REF
|
||||||
|
echo debug: $RANGE
|
||||||
|
echo debug: log BEFORE: $(git log -1 $BEFORE | head -1)
|
||||||
|
echo debug: log origin/master: $(git log -1 origin/master | head -1)
|
||||||
|
echo debug: log GITHUB_HEAD_REF: $(git log -1 $GITHUB_HEAD_REF | head -1)
|
||||||
|
echo debug: log origin/GITHUB_HEAD_REF: $(git log -1 origin/$GITHUB_HEAD_REF | head -1)
|
||||||
|
echo debug: log RANGE: $(git log $RANGE | grep -E '^commit')
|
||||||
if git rev-list --quiet $RANGE
|
if git rev-list --quiet $RANGE
|
||||||
then tools/commitlint $RANGE
|
then tools/commitlint $RANGE
|
||||||
else echo "could not identify commits, not checking them"
|
else echo "could not identify commits, not checking them"
|
||||||
|
|||||||
8
.github/workflows/push.yml
vendored
8
.github/workflows/push.yml
vendored
@ -92,6 +92,14 @@ jobs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
RANGE=${BEFORE:-origin/master}..${GITHUB_HEAD_REF:+origin/$GITHUB_HEAD_REF}
|
RANGE=${BEFORE:-origin/master}..${GITHUB_HEAD_REF:+origin/$GITHUB_HEAD_REF}
|
||||||
|
echo debug: BEFORE: $BEFORE
|
||||||
|
echo debug: GITHUB_HEAD_REF: $GITHUB_HEAD_REF
|
||||||
|
echo debug: $RANGE
|
||||||
|
echo debug: log BEFORE: $(git log -1 $BEFORE | head -1)
|
||||||
|
echo debug: log origin/master: $(git log -1 origin/master | head -1)
|
||||||
|
echo debug: log GITHUB_HEAD_REF: $(git log -1 $GITHUB_HEAD_REF | head -1)
|
||||||
|
echo debug: log origin/GITHUB_HEAD_REF: $(git log -1 origin/$GITHUB_HEAD_REF | head -1)
|
||||||
|
echo debug: log RANGE: $(git log $RANGE | grep -E '^commit')
|
||||||
if git rev-list --quiet $RANGE
|
if git rev-list --quiet $RANGE
|
||||||
then tools/commitlint $RANGE
|
then tools/commitlint $RANGE
|
||||||
else echo "could not identify commits, not checking them"
|
else echo "could not identify commits, not checking them"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user