WEBUI_STABLE_DIFFUSION / .github /workflows /warns_merge_master.yml
AmyTheKamiwazaGirl2001's picture
Upload 274 files
c5f6978 verified
raw
history blame contribute delete
424 Bytes
name: Pull requests can't target master branch
"on":
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- master
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Warning marge into master
run: |
echo -e "::warning::This pull request directly merge into \"master\" branch, normally development happens on \"dev\" branch."
exit 1