From 62c737688357c37b8eeaf57b4f2d573c272fe536 Mon Sep 17 00:00:00 2001 From: Muhammad Zayan Date: Tue, 5 May 2026 18:13:38 +0500 Subject: [PATCH 1/2] test branch push --- test.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 test.txt diff --git a/test.txt b/test.txt new file mode 100644 index 0000000..9daeafb --- /dev/null +++ b/test.txt @@ -0,0 +1 @@ +test From 122db600bda7bea68fef7a235557928bcafbfc2c Mon Sep 17 00:00:00 2001 From: Muhammad Zayan Date: Tue, 5 May 2026 18:17:10 +0500 Subject: [PATCH 2/2] added fourth workflow (job status) --- .github/workflows/fourthworkflow.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/fourthworkflow.yml diff --git a/.github/workflows/fourthworkflow.yml b/.github/workflows/fourthworkflow.yml new file mode 100644 index 0000000..5637356 --- /dev/null +++ b/.github/workflows/fourthworkflow.yml @@ -0,0 +1,28 @@ +name: Fourth workflow (Job Status) + +on: + workflow_dispatch + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Build step + run: echo "Building project..." + + test: + runs-on: ubuntu-latest + needs: build # 👈 runs only after build + + steps: + - name: Test step + run: echo "Running tests..." + + deploy: + runs-on: ubuntu-latest + needs: test # 👈 runs only after test + + steps: + - name: Deploy step + run: echo "Deploying project..."