7f8e1f56fa
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.
21 lines
527 B
Bash
Executable file
21 lines
527 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# changed_templates.sh
|
|
|
|
if command -v chroot-git >/dev/null 2>&1; then
|
|
GIT_CMD=$(command -v chroot-git)
|
|
elif command -v git >/dev/null 2>&1; then
|
|
GIT_CMD=$(command -v git)
|
|
fi
|
|
|
|
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'
|
|
$GIT_CMD diff-tree -r --no-renames --name-only --diff-filter=AM \
|
|
$(cat /tmp/revisions) \
|
|
-- 'srcpkgs/*/template' |
|
|
cut -d/ -f 2 |
|
|
tee /tmp/templates |
|
|
sed "s/^/ /" >&2
|