diff --git a/.github/workflows/dummy-ci.yml b/.github/workflows/dummy-ci.yml new file mode 100644 index 00000000..38c112ee --- /dev/null +++ b/.github/workflows/dummy-ci.yml @@ -0,0 +1,15 @@ +name: Dummy CI + +on: + push: + branches: [master] + pull_request: + types: [opened, synchronize, reopened, ready_for_review] + workflow_dispatch: + +jobs: + dummy: + if: github.event.pull_request.draft == false + runs-on: ubuntu-latest + steps: + - run: echo "Dummy CI completed"