Skip to content

Commit

Permalink
merge: PR #113 from dev
Browse files Browse the repository at this point in the history
Weekly release 2023-04-11
  • Loading branch information
alycejenni committed Apr 11, 2023
2 parents c7e882f + 5047723 commit 31fd701
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Sync branches

on:
push:
branches:
- main

jobs:
sync-branches:
runs-on: ubuntu-latest
name: "Sync dev and patch branches to latest commit"
steps:
- name: Check out
uses: actions/checkout@v3
with:
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
fetch-depth: 0
- name: Sync dev branch
uses: connor-baer/action-sync-branch@main
with:
branch: dev
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Sync patch branch
uses: connor-baer/action-sync-branch@main
with:
branch: patch
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ services:
environment:
- DATASTORE_READONLY_PASSWORD=password
- POSTGRES_PASSWORD=password
- PGDATA=/var/lib/postgresql/data/db
logging:
driver: none

Expand Down

0 comments on commit 31fd701

Please sign in to comment.