From d968b0e4d58cd6432c8eb6d7f4607a138459ba41 Mon Sep 17 00:00:00 2001 From: gulshangulati Date: Wed, 31 May 2023 13:35:32 +0200 Subject: [PATCH 1/2] Create basic-workflow.yml --- basic-workflow.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 basic-workflow.yml diff --git a/basic-workflow.yml b/basic-workflow.yml new file mode 100644 index 00000000..a45301fd --- /dev/null +++ b/basic-workflow.yml @@ -0,0 +1,16 @@ +name: GitHub Actions Demo +run-name: Testing out GitHub Actions Event Trigger +on: + push: + branches: + - master + - 'releases/**' + pull_request: + branches: + - master + - 'releases/**' +jobs: + Basic-Workflow: + runs-on: ubuntu-latest + steps: + - run: echo " Job is executing as part of Basic workflow" From e2027bbc06e71f254b5ed737aca43ccc3c0ba032 Mon Sep 17 00:00:00 2001 From: gulshangulati Date: Wed, 31 May 2023 13:44:24 +0200 Subject: [PATCH 2/2] Update basic-workflow.yml --- basic-workflow.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/basic-workflow.yml b/basic-workflow.yml index a45301fd..eb99cd9a 100644 --- a/basic-workflow.yml +++ b/basic-workflow.yml @@ -6,10 +6,7 @@ on: - master - 'releases/**' pull_request: - branches: - - master - - 'releases/**' -jobs: + jobs: Basic-Workflow: runs-on: ubuntu-latest steps: