Skip to content

Commit cbec137

Browse files
arriolacriggaroo
authored andcommitted
Fix merge
1 parent 47579b8 commit cbec137

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/sync_main_latest.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Sync main and latest
22
on:
3+
workflow_dispatch:
34
push:
45
branches:
56
- main
@@ -16,7 +17,7 @@ jobs:
1617
run: git config user.email "[email protected]" && git config user.name "compose-devrel-github-bot"
1718

1819
- name: Merge main into latest
19-
run: git checkout latest && git merge main
20+
run: git fetch && git switch latest && git merge -s ours origin/main --allow-unrelated-histories
2021

2122
- name: Create pull request
2223
id: cpr

.github/workflows/update_deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
run: ./gradlew versionCatalogUpdate
2020
- name: Create pull request
2121
id: cpr
22-
uses: peter-evans/create-pull-request@v4
22+
uses: peter-evans/create-pull-request@v6
2323
with:
2424
token: ${{ secrets.PAT }}
2525
commit-message: 🤖 Update Dependencies

0 commit comments

Comments
 (0)