Skip to content

Storage - Replace LiteDB with SQLite + EF Core #19

Storage - Replace LiteDB with SQLite + EF Core

Storage - Replace LiteDB with SQLite + EF Core #19

Workflow file for this run

name: Check pull request branch
on:
pull_request_target:
types:
- opened
- reopened
- synchronize
jobs:
check-branches:
runs-on: ubuntu-latest
steps:
- name: Check branches
run: |
if [ ${{ github.head_ref }} != "development" ] && [ ${{ github.base_ref }} == "master" ]; then
echo "Merge requests to master are only allowed from development."
exit 1
fi