From 81f3bbee209c6dc173c4525896b703bb93066ede Mon Sep 17 00:00:00 2001 From: devopslearnc Date: Sat, 17 May 2025 16:39:12 -0700 Subject: [PATCH] added multi stage files --- .github/workflows/multi-stage.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/multi-stage.yml 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