Skip to content

Submodualarizatooor - moves a lot of code into submodules for MUCH easier mangement #2

Submodualarizatooor - moves a lot of code into submodules for MUCH easier mangement

Submodualarizatooor - moves a lot of code into submodules for MUCH easier mangement #2

Workflow file for this run

name: PR Target Check
on:
pull_request:
types: [opened, edited]
jobs:
check-branch:
runs-on: ubuntu-latest
steps:
- name: Check if PR is targeting the 'develop' branch
run: |
if [ "${{ github.event.pull_request.base.ref }}" != "develop" ]; then
echo "::warning file=${{ github.event.pull_request.url }}::PR is not targeting 'develop'. Please change the target branch to 'develop'."
else
echo "PR is targeting the 'develop' branch. Everything is okay."
fi