diff --git a/.github/workflows/multi-stage.yml b/.github/workflows/multi-stage.yml new file mode 100644 index 0000000..7f83525 --- /dev/null +++ b/.github/workflows/multi-stage.yml @@ -0,0 +1,14 @@ +name: Multi Stage +on: + push: + branches: + - dev + pull_request: + branches: + - main +jobs: + push_event_check: + runs-on: ubuntu-latest + steps: + - name: check the dev + run: echo "matched to dev branch" \ No newline at end of file