File tree Expand file tree Collapse file tree 1 file changed +18
-7
lines changed Expand file tree Collapse file tree 1 file changed +18
-7
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,22 @@ jobs:
10
10
name : Syncing branches
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v2
14
- - name : Opening pull request
15
- id : pull
16
-
13
+ uses : actions/checkout@v3
14
+
15
+ - name : Merge main into latest
16
+ run : git checkout latest && git merge main
17
+
18
+ - name : Create pull request
19
+ id : cpr
20
+ uses : peter-evans/create-pull-request@v4
17
21
with :
18
- GITHUB_TOKEN : ${{secrets.PAT}}
19
- FROM_BRANCH : " main"
20
- TO_BRANCH : " latest"
22
+ token : ${{ secrets.PAT }}
23
+ commit-message : 🤖 Sync main to latest
24
+ committer :
compose-devrel-github-bot <[email protected] >
25
+ author :
compose-devrel-github-bot <[email protected] >
26
+ signoff : false
27
+ branch : bot-sync-main
28
+ delete-branch : true
29
+ title : ' 🤖 Sync main to latest'
30
+ body : Updated dependencies
31
+ reviewers : ${{ github.actor }}
You can’t perform that action at this time.
0 commit comments