Skip to content

Commit

Permalink
Merge branch 'POLARDB_11_DEV' into POLARDB_11_STABLE
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdrivingduck committed Aug 7, 2024
2 parents e6b6424 + f3749fb commit ffa2fa5
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/sync-postgres.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: sync with postgres upstream

on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"

jobs:
repo-sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: repo-sync-master
uses: repo-sync/github-sync@v2
with:
source_repo: https://github.com/postgres/postgres.git
source_branch: master
destination_branch: master
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: repo-sync-17
uses: repo-sync/github-sync@v2
with:
source_repo: https://github.com/postgres/postgres.git
source_branch: REL_17_STABLE
destination_branch: REL_17_STABLE
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: repo-sync-16
uses: repo-sync/github-sync@v2
with:
source_repo: https://github.com/postgres/postgres.git
source_branch: REL_16_STABLE
destination_branch: REL_16_STABLE
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: repo-sync-15
uses: repo-sync/github-sync@v2
with:
source_repo: https://github.com/postgres/postgres.git
source_branch: REL_15_STABLE
destination_branch: REL_15_STABLE
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ffa2fa5

Please sign in to comment.