Merge pull request #22 from discretizer/bugfix/no_merges
Don't include merges in new revisions
This commit is contained in:
commit
968ddef94b
2
.github/workflows/fork-sync.yml
vendored
2
.github/workflows/fork-sync.yml
vendored
@ -38,7 +38,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
for TAG in ${NEW_TAGS}; do
|
for TAG in ${NEW_TAGS}; do
|
||||||
git checkout -b release/${TAG} ${TAG}
|
git checkout -b release/${TAG} ${TAG}
|
||||||
git rev-list --reverse main ^upstream/main | git cherry-pick --stdin
|
git rev-list --no-merges --reverse main ^upstream/main | git cherry-pick --stdin
|
||||||
git tag -d ${TAG}
|
git tag -d ${TAG}
|
||||||
git tag ${TAG} release/${TAG}
|
git tag ${TAG} release/${TAG}
|
||||||
done
|
done
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user