Skip to content

Applying auto-install modifications on a new 'fix' branch + restricting Frogbot's auto-install feature for Yarn #348

Applying auto-install modifications on a new 'fix' branch + restricting Frogbot's auto-install feature for Yarn

Applying auto-install modifications on a new 'fix' branch + restricting Frogbot's auto-install feature for Yarn #348

name: Validate Pull Request Target Branch
on:
pull_request_target:
types:
- opened
- reopened
- synchronize
jobs:
validate-target-branch:
runs-on: ubuntu-latest
steps:
- name: Check Target Branch
run: |
if [ "${{ github.base_ref }}" != "dev" ]; then
echo "Pull requests must target the 'dev' branch."
exit 1
fi