Skip to content

docs: update doxyfile #5

docs: update doxyfile

docs: update doxyfile #5

name: Check PR source branch
on:
pull_request:
jobs:
check-branch:
runs-on: ubuntu-latest
steps:
- name: Verify PR source
if: github.base_ref == 'main'
run: |
if [ "${{ github.head_ref }}" != "develop" ]; then
echo "PRs to main must come from develop"
exit 1
fi