From 229b2772349e22faba308090112926a73dac28aa Mon Sep 17 00:00:00 2001 From: sudheer Date: Wed, 17 Sep 2025 15:53:26 +0530 Subject: [PATCH 1/2] Added a workflow for develop branch --- hello.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 hello.yaml diff --git a/hello.yaml b/hello.yaml new file mode 100644 index 0000000..bdafada --- /dev/null +++ b/hello.yaml @@ -0,0 +1,12 @@ + + name: "hello to develop branch" + on: + push: + branches: + -develop: + jobs: + build: + runs-on: ubuntu-latest + steps: + name: "hello to develop branch" + run:echo "hello to develop branch" \ No newline at end of file From 553e854ac6b8a83c22a98a4db25eab2e8bfe78f6 Mon Sep 17 00:00:00 2001 From: sudheer Date: Wed, 17 Sep 2025 16:09:01 +0530 Subject: [PATCH 2/2] changes --- hello.yaml | 2 +- workflows | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 workflows diff --git a/hello.yaml b/hello.yaml index bdafada..ce56da3 100644 --- a/hello.yaml +++ b/hello.yaml @@ -9,4 +9,4 @@ runs-on: ubuntu-latest steps: name: "hello to develop branch" - run:echo "hello to develop branch" \ No newline at end of file + run:echo "hello to develop branch" \ No newline at end of file diff --git a/workflows b/workflows new file mode 100644 index 0000000..45bcf3a --- /dev/null +++ b/workflows @@ -0,0 +1,11 @@ +name: "hello to develop branch" + on: + push: + branches: + -develop: + jobs: + build: + runs-on: ubuntu-latest + steps: + name: "hello to develop branch" + run:echo "hello to develop branch" \ No newline at end of file