From 2662a4862d8b2d2e0d29e4d092919fd00a2ba004 Mon Sep 17 00:00:00 2001 From: suyashgaonkar Date: Wed, 26 Jun 2024 16:12:47 +0530 Subject: [PATCH] goodbye world added --- .github/workflows/helloworld.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/helloworld.yml b/.github/workflows/helloworld.yml index 9fa595e7..b2c97264 100644 --- a/.github/workflows/helloworld.yml +++ b/.github/workflows/helloworld.yml @@ -3,9 +3,11 @@ name: Hello world work flow on: push: branches: + -main -suyash-test-1 pull_request: branches: + -main -suyash-test-1 workflow_dispatch: jobs: @@ -16,3 +18,10 @@ jobs: - name: hello world run: echo "Hello world" shell: bash + goodbye: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: hello world + run: echo "Good Bye world" + shell: bash