Skip to content

Commit ffa2fa5

Browse files
committed
Merge branch 'POLARDB_11_DEV' into POLARDB_11_STABLE
2 parents e6b6424 + f3749fb commit ffa2fa5

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: sync with postgres upstream
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: "0 0 * * *"
7+
8+
jobs:
9+
repo-sync:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
with:
14+
persist-credentials: false
15+
- name: repo-sync-master
16+
uses: repo-sync/github-sync@v2
17+
with:
18+
source_repo: https://github.com/postgres/postgres.git
19+
source_branch: master
20+
destination_branch: master
21+
github_token: ${{ secrets.GITHUB_TOKEN }}
22+
- name: repo-sync-17
23+
uses: repo-sync/github-sync@v2
24+
with:
25+
source_repo: https://github.com/postgres/postgres.git
26+
source_branch: REL_17_STABLE
27+
destination_branch: REL_17_STABLE
28+
github_token: ${{ secrets.GITHUB_TOKEN }}
29+
- name: repo-sync-16
30+
uses: repo-sync/github-sync@v2
31+
with:
32+
source_repo: https://github.com/postgres/postgres.git
33+
source_branch: REL_16_STABLE
34+
destination_branch: REL_16_STABLE
35+
github_token: ${{ secrets.GITHUB_TOKEN }}
36+
- name: repo-sync-15
37+
uses: repo-sync/github-sync@v2
38+
with:
39+
source_repo: https://github.com/postgres/postgres.git
40+
source_branch: REL_15_STABLE
41+
destination_branch: REL_15_STABLE
42+
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)