Skip to content

Fix the uninstall command (was messed up in the markdown syntax) #28

Fix the uninstall command (was messed up in the markdown syntax)

Fix the uninstall command (was messed up in the markdown syntax) #28

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 }}" != "master" ]; then
echo "Pull requests must target the 'master' branch."
exit 1
fi