From ec81c2189b830abe5d575b3b6d5c09e7f8f7df1f Mon Sep 17 00:00:00 2001 From: jgarcia Date: Thu, 18 Apr 2024 19:28:51 +0100 Subject: [PATCH] wf --- .github/workflows/main.yaml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 57646ea..2eb16b9 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -14,22 +14,3 @@ jobs: - name: Run a one-line script run: echo "Hello, this is the main workflow running!" ---- -name: Dependent Workflow - -on: - workflow_run: - workflows: ["Main Workflow"] - types: - - completed - -jobs: - notify: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v3 - - name: Run a one-line script - run: echo "Hello, this is the dependent workflow running after the main workflow!" - -