Skip to content

Commit 3be3ccd

Browse files
Merge branch 'main' of https://github.com/0xPolygon/polygon-docs into km/cdk_finalizing
2 parents 266435c + 412e9e7 commit 3be3ccd

File tree

221 files changed

+1038
-1893
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

221 files changed

+1038
-1893
lines changed
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
1-
name: Merge Main to Dev
1+
name: Daily Merge Main to Dev
22

33
on:
44
schedule:
5-
- cron: '0 0 * * *' # Run daily at midnight UTC
5+
- cron: '0 0 * * *' # Runs every day at 00:00 UTC
66

77
jobs:
8-
merge:
8+
merge-main-to-dev:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- name: Checkout code
13-
uses: actions/checkout@v2
12+
- name: Checkout repository
13+
uses: actions/checkout@v3
1414

15-
- name: Merge Main to Dev
16-
run: |
17-
git checkout dev
18-
git pull origin dev
19-
git fetch origin main
20-
git merge origin/main --no-edit
21-
git push origin dev
15+
- name: Fetch latest changes
16+
run: git fetch origin
17+
18+
- name: Merge main branch to dev branch
19+
run: git merge origin/main -m "Merge main branch to dev"
20+
21+
- name: Push dev branch changes
22+
run: git push origin dev
-29 KB
Binary file not shown.

docs/img/pos/checkpoint-flowchart.svg

Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)