From c2f1e6561c13ae29728df15dc2b3afc50c7dd6d7 Mon Sep 17 00:00:00 2001 From: devops-intellipaat Date: Fri, 18 Jan 2019 02:28:17 +0000 Subject: [PATCH 1/4] added feature A --- main.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/main.c b/main.c index 112f3bdc..281db429 100644 --- a/main.c +++ b/main.c @@ -5,6 +5,11 @@ Initial Function() //Sample Code } +feature1() +{ + //Sample Code for Feature 1 +} + } From ec34fc6de0d11fbf63ca7f49c1c4ecd4963c4a3b Mon Sep 17 00:00:00 2001 From: devops-intellipaat Date: Fri, 18 Jan 2019 02:33:59 +0000 Subject: [PATCH 2/4] added feature2 --- main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.c b/main.c index 112f3bdc..6cdab63c 100644 --- a/main.c +++ b/main.c @@ -5,6 +5,10 @@ Initial Function() //Sample Code } +feaature2() +{ + //Sample Code for Feature 2 +} } From 785bc4b5de4b67df024b1709b5e6a9de75e85915 Mon Sep 17 00:00:00 2001 From: vaishnaviaddaguduru <36448226+vaishnaviaddaguduru@users.noreply.github.com> Date: Mon, 14 Oct 2024 16:18:42 +0530 Subject: [PATCH 3/4] Update main.c updated security feature details in feature branch --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index eecfb98e..63707a4a 100644 --- a/main.c +++ b/main.c @@ -18,7 +18,7 @@ feaature2() Initial Security() { - //Sample Code + //Hello Vaishnavi } From e0f54cca3ba5e6b735b48b7c3e6e313d54846483 Mon Sep 17 00:00:00 2001 From: vaishnaviaddaguduru <36448226+vaishnaviaddaguduru@users.noreply.github.com> Date: Sat, 16 Nov 2024 17:07:51 +0530 Subject: [PATCH 4/4] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000..27a798ad --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,19 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- master + +pool: + vmImage: ubuntu-latest + +steps: +- script: echo Hello, world! + displayName: 'Run a one-line script' + +- script: | + echo Add other tasks to build, test, and deploy your project. + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script'