forked from coreos/fedora-coreos-config
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fetch the source branch for generating the shortlog
- Loading branch information
1 parent
dc6ef4b
commit b3aa70d
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,9 +74,11 @@ jobs: | |
git submodule update | ||
cd fedora-coreos-config | ||
# the submodule init only fetch the submodule commit and the default branch `testing-devel` | ||
git fetch origin ${SOURCE_BRANCH} | ||
# Omit CoreOS Bot commits from the log message, since they generally | ||
# only affect FCOS | ||
git shortlog "HEAD..$SOURCE_BRANCH" --perl-regexp \ | ||
git shortlog "HEAD..FETCH_HEAD" --perl-regexp \ | ||
--author='^((?!CoreOS Bot <[email protected]>).*)$' \ | ||
> $RUNNER_TEMP/shortlog | ||
|