Skip to content

swap mobile/desktop video resolution #61

swap mobile/desktop video resolution

swap mobile/desktop video resolution #61

Workflow file for this run

name: Gitflow Enforcer
on:
pull_request:
types: [opened, reopened, edited, synchronize]
jobs:
gitflow_enforcer:
runs-on: ubuntu-latest
steps:
- name: Check branch
if: github.base_ref == 'main' && (github.head_ref != 'develop' && !startsWith(github.head_ref, 'hotfix/'))
run: |
echo "ERROR: You can only merge to main from develop or hotfix/* branches"
exit 1