Update Dependencies on top of 9.0.0 #1038 #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate PR | |
on: | |
pull_request: | |
jobs: | |
validate-pr: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Check master | |
if: ${{github.base_ref == 'master' && github.head_ref != 'develop'}} | |
run: Target=${{github.base_ref}} Source=${{github.head_ref}}. echo You must not merge directly to master. Instead merge to 'develop' first. && exit 1 |