Skip to content

Simplify merge strategy for staging #373

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 59 commits into from
Sep 23, 2024
Merged
Changes from all commits
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
cd5d48a
Simplify merge strategy
nrichers Sep 17, 2024
daf0d52
Minor workflow tweaks
nrichers Sep 17, 2024
7e948dd
Switch to test branches
nrichers Sep 17, 2024
a7b6d4e
Add comment to trigger workflow
nrichers Sep 17, 2024
6f5d3db
Add comment to trigger workflow
nrichers Sep 17, 2024
ceb246b
Add comment to trigger workflow
nrichers Sep 17, 2024
b3a4e2a
Switch to squash merge
nrichers Sep 17, 2024
09fafe6
Add comment to trigger workflow
nrichers Sep 17, 2024
4e8440f
Remove comment to trigger workflow
nrichers Sep 17, 2024
309e8f4
Remove comment to trigger workflow
nrichers Sep 17, 2024
7361f49
Remove comment to trigger workflow
nrichers Sep 17, 2024
8d25a6b
Remove comment to trigger workflow
nrichers Sep 17, 2024
113b0ab
Add test comment to trigger workflow
nrichers Sep 17, 2024
da9c1bf
Add test comment to trigger workflow
nrichers Sep 17, 2024
6d7e663
Add test comment to trigger workflow
nrichers Sep 17, 2024
35733ca
Add test comment to trigger workflow
nrichers Sep 17, 2024
2dff082
Add test comment to trigger workflow
nrichers Sep 18, 2024
3fede2f
Try --ff strategy
nrichers Sep 18, 2024
664cd1c
Add test comment to trigger workflow
nrichers Sep 18, 2024
fdadc6e
Add test comment to trigger workflow
nrichers Sep 18, 2024
eccc107
Revert to --no-ff strategy
nrichers Sep 18, 2024
79232d3
Try reset --hard
nrichers Sep 18, 2024
3e22701
Switch to --merge for PRs
nrichers Sep 18, 2024
e20f749
Switch back to merge --no-ff
nrichers Sep 18, 2024
b30d66b
Try merge --ff again
nrichers Sep 18, 2024
f8f0a29
Add test comment to trigger workflow
nrichers Sep 18, 2024
db9ae1d
Switch back to merge --no-ff
nrichers Sep 18, 2024
903f027
Add test comment to trigger workflow
nrichers Sep 18, 2024
7c66e5d
Switch back to squash merging for PRs
nrichers Sep 18, 2024
4bb36d7
Add test comment to trigger workflow
nrichers Sep 18, 2024
aa34626
Remove test comments
nrichers Sep 18, 2024
6ad0563
Revert to --merge for PRs
nrichers Sep 18, 2024
9cec483
Testing PR#373 - push to branch from local
validbeck Sep 20, 2024
e60d5e3
Add comment to trigger workflow
nrichers Sep 17, 2024
d32ea3d
Add comment to trigger workflow
nrichers Sep 17, 2024
46ca64d
Add comment to trigger workflow
nrichers Sep 17, 2024
8a47cd0
Switch to squash merge
nrichers Sep 17, 2024
efda764
Add comment to trigger workflow
nrichers Sep 17, 2024
425d739
Remove comment to trigger workflow
nrichers Sep 17, 2024
023de98
Remove comment to trigger workflow
nrichers Sep 17, 2024
536362c
Remove comment to trigger workflow
nrichers Sep 17, 2024
0527eca
Remove comment to trigger workflow
nrichers Sep 17, 2024
72afcc9
Add test comment to trigger workflow
nrichers Sep 17, 2024
13f8553
Add test comment to trigger workflow
nrichers Sep 17, 2024
e717fe8
Add test comment to trigger workflow
nrichers Sep 17, 2024
4dd3d06
Add test comment to trigger workflow
nrichers Sep 17, 2024
bdba3f0
Add test comment to trigger workflow
nrichers Sep 18, 2024
4ec1328
Add test comment to trigger workflow
nrichers Sep 18, 2024
6f6ab5f
Add test comment to trigger workflow
nrichers Sep 18, 2024
59e1526
Switch to --merge for PRs
nrichers Sep 18, 2024
edf36eb
Add test comment to trigger workflow
nrichers Sep 18, 2024
ee50911
Add test comment to trigger workflow
nrichers Sep 18, 2024
1cb97b8
Switch back to squash merging for PRs
nrichers Sep 18, 2024
e04f873
Add test comment to trigger workflow
nrichers Sep 18, 2024
6e6a905
Remove test comments
nrichers Sep 18, 2024
6340fa1
Revert to --merge for PRs
nrichers Sep 18, 2024
7a3f999
Merge branch 'simplify-merge-strategy' of github.com:validmind/docume…
nrichers Sep 23, 2024
a6608dc
Undo test changes
nrichers Sep 23, 2024
0e6928a
Undo test comment
nrichers Sep 23, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/merge-main-into-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Merge main into staging
on:
push:
branches:
- main
- simplify-merge-strategy

permissions:
contents: write
Expand All @@ -19,6 +19,7 @@ jobs:
uses: actions/checkout@v3
with:
ref: staging
fetch-depth: 0

- name: Configure git
run: |
Expand All @@ -27,8 +28,7 @@ jobs:

- name: Merge in main branch
run: |
git fetch origin main:main
git merge main --no-ff --allow-unrelated-histories --strategy-option theirs -m "Merging latest changes from main into staging"
git merge --no-ff origin/main

- name: Create pull request
id: pr-number
Expand Down
Loading