Skip to content

Profiles - Added IPluginFeatureDependent interface and implement throughout profiles #18

Profiles - Added IPluginFeatureDependent interface and implement throughout profiles

Profiles - Added IPluginFeatureDependent interface and implement throughout profiles #18

Workflow file for this run

name: Check pull request branch
on:
pull_request_target:
types:
- opened
- reopened
- synchronize
jobs:
check-branches:
runs-on: ubuntu-latest
steps:
- name: Check branches
run: |
if [ ${{ github.head_ref }} != "development" ] && [ ${{ github.base_ref }} == "master" ]; then
echo "Merge requests to master are only allowed from development."
exit 1
fi