Skip to content

add main app skeleton #124

add main app skeleton

add main app skeleton #124

Workflow file for this run

name: Dont merge
on:
pull_request:
# branches:
# - main
types:
- opened
- labeled
- unlabeled
jobs:
fail-for-draft:
if: contains(github.event.pull_request.labels.*.name, 'Dont merge')
runs-on: ubuntu-latest
steps:
- name: Fail if PR is a Dont merge
run: |
echo "This PR is currently blocked"
exit 1