Skip to content

test: fix liquibase migration on windows (#99) #47

test: fix liquibase migration on windows (#99)

test: fix liquibase migration on windows (#99) #47

name: Automatic Rebase
on:
push:
branches:
- main
permissions:
contents: write
jobs:
rebase:
name: Rebase `dependencies` with `main`
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
ref: dependencies
- run: |
git config user.name github-actions
git config user.email [email protected]
git rebase origin/main
git push origin dependencies --force