ci/changed-templates: use tip of feature branch as tip
The HEAD given by GitHub Action is always non-fast-forward merge commit. In the next change, lint-commits will use the tip from "changed_templates.sh". Let pick the correct tip for interrogation.
This commit is contained in:
parent
92a88e077c
commit
7f8e1f56fa
1 changed files with 3 additions and 1 deletions
|
@ -8,7 +8,9 @@ elif command -v git >/dev/null 2>&1; then
|
||||||
GIT_CMD=$(command -v git)
|
GIT_CMD=$(command -v git)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
printf '%s ' "$(git merge-base FETCH_HEAD HEAD)" HEAD > /tmp/revisions
|
printf '%s %s\n' \
|
||||||
|
"$(git merge-base FETCH_HEAD HEAD^2)" \
|
||||||
|
"$(git rev-parse --verify HEAD^2)" > /tmp/revisions
|
||||||
|
|
||||||
/bin/echo -e '\x1b[32mChanged packages:\x1b[0m'
|
/bin/echo -e '\x1b[32mChanged packages:\x1b[0m'
|
||||||
$GIT_CMD diff-tree -r --no-renames --name-only --diff-filter=AM \
|
$GIT_CMD diff-tree -r --no-renames --name-only --diff-filter=AM \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue