mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 15:17:33 +00:00
chore: fix login sync (#10250)
# Which Problems Are Solved When changes are pulled or pushed from or to a login repository, they can't be merged to zitadel, because the commit histories differ. # How the Problems Are Solved Changed the commands to allow diverging commit histories. Pulling takes a lot of commits into the zitadel repo branch like this. This is fine, as we anyway squash-merge PRs to a single commit. So we don't care about a branches commit history. # Additional Changes Added an exception to the close-pr.yml workflow so sync PRs are not auto-closed. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Florian Forster <florian@zitadel.com> Co-authored-by: Max Peintner <peintnerm@gmail.com> Co-authored-by: Max Peintner <max@caos.ch> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
15
Makefile
15
Makefile
@@ -180,18 +180,25 @@ core_lint:
|
|||||||
.PHONY: login_pull
|
.PHONY: login_pull
|
||||||
login_pull: login_ensure_remote
|
login_pull: login_ensure_remote
|
||||||
@echo "Pulling changes from the 'login' subtree on remote $(LOGIN_REMOTE_NAME) branch $(LOGIN_REMOTE_BRANCH)"
|
@echo "Pulling changes from the 'login' subtree on remote $(LOGIN_REMOTE_NAME) branch $(LOGIN_REMOTE_BRANCH)"
|
||||||
git fetch $(LOGIN_REMOTE_NAME)
|
git fetch $(LOGIN_REMOTE_NAME) $(LOGIN_REMOTE_BRANCH)
|
||||||
git subtree pull --prefix=login $(LOGIN_REMOTE_NAME) $(LOGIN_REMOTE_BRANCH)
|
git merge -s ours --allow-unrelated-histories $(LOGIN_REMOTE_NAME)/$(LOGIN_REMOTE_BRANCH) -m "Synthetic merge to align histories"
|
||||||
|
git push
|
||||||
|
|
||||||
.PHONY: login_push
|
.PHONY: login_push
|
||||||
login_push: login_ensure_remote
|
login_push: login_ensure_remote
|
||||||
@echo "Pushing changes to the 'login' subtree on remote $(LOGIN_REMOTE_NAME) branch $(LOGIN_REMOTE_BRANCH)"
|
@echo "Pushing changes to the 'login' subtree on remote $(LOGIN_REMOTE_NAME) branch $(LOGIN_REMOTE_BRANCH)"
|
||||||
git subtree push --prefix=login $(LOGIN_REMOTE_NAME) $(LOGIN_REMOTE_BRANCH)
|
git subtree split --prefix=login -b login-sync-tmp
|
||||||
|
git checkout login-sync-tmp
|
||||||
|
git fetch $(LOGIN_REMOTE_NAME) main
|
||||||
|
git merge -s ours --allow-unrelated-histories $(LOGIN_REMOTE_NAME)/main -m "Synthetic merge to align histories"
|
||||||
|
git push $(LOGIN_REMOTE_NAME) login-sync-tmp:$(LOGIN_REMOTE_BRANCH)
|
||||||
|
git checkout -
|
||||||
|
git branch -D login-sync-tmp
|
||||||
|
|
||||||
login_ensure_remote:
|
login_ensure_remote:
|
||||||
@if ! git remote get-url $(LOGIN_REMOTE_NAME) > /dev/null 2>&1; then \
|
@if ! git remote get-url $(LOGIN_REMOTE_NAME) > /dev/null 2>&1; then \
|
||||||
echo "Adding remote $(LOGIN_REMOTE_NAME)"; \
|
echo "Adding remote $(LOGIN_REMOTE_NAME)"; \
|
||||||
git remote add --fetch $(LOGIN_REMOTE_NAME) $(LOGIN_REMOTE_URL); \
|
git remote add $(LOGIN_REMOTE_NAME) $(LOGIN_REMOTE_URL); \
|
||||||
else \
|
else \
|
||||||
echo "Remote $(LOGIN_REMOTE_NAME) already exists."; \
|
echo "Remote $(LOGIN_REMOTE_NAME) already exists."; \
|
||||||
fi
|
fi
|
||||||
|
2
login/.github/workflows/close_pr.yml
vendored
2
login/.github/workflows/close_pr.yml
vendored
@@ -8,7 +8,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
auto-close:
|
auto-close:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.repository_id == '622995060'
|
if: github.repository_id == '622995060' && github.ref_name != 'mirror-zitadel-repo'
|
||||||
steps:
|
steps:
|
||||||
- name: Comment and close PR
|
- name: Comment and close PR
|
||||||
uses: actions/github-script@v7
|
uses: actions/github-script@v7
|
||||||
|
Reference in New Issue
Block a user