Skip to content

Bumped System-Text.Json to 8.0.4 #37

Bumped System-Text.Json to 8.0.4

Bumped System-Text.Json to 8.0.4 #37

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