File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change 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 }}
You can’t perform that action at this time.
0 commit comments