-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stop synchronization between 2.5 and 2.6 branch
- Loading branch information
1 parent
78bdc95
commit f6825fd
Showing
1 changed file
with
5 additions
and
12 deletions.
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
name: Sync Back to master and openldap26 | ||
name: Sync Back to master | ||
|
||
on: | ||
push: | ||
branches: | ||
- openldap25 | ||
- openldap26 | ||
|
||
jobs: | ||
sync-branches: | ||
|
@@ -12,22 +12,15 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: openldap25 | ||
ref: openldap26 | ||
- run: | | ||
git fetch --unshallow | ||
git pull origin openldap25 | ||
git pull origin openldap26 | ||
git config user.email "[email protected]" | ||
git config user.name "GitHub Actions" | ||
- name: sync master | ||
run: | | ||
git checkout master | ||
git pull --rebase | ||
git merge openldap25 --ff-only | ||
git merge openldap26 --ff-only | ||
git push | ||
- name: sync openldap26 | ||
run: | | ||
git checkout openldap26 | ||
git pull --rebase | ||
git merge openldap25 --ff-only | ||
git push | ||