From d67f6e48b1e0fca32ad934284e98b406a0fe6c0f Mon Sep 17 00:00:00 2001 From: Gaurav Date: Sat, 14 Oct 2023 22:17:56 +0530 Subject: [PATCH 1/5] To master --- mastercode | 1 + 1 file changed, 1 insertion(+) create mode 100644 mastercode diff --git a/mastercode b/mastercode new file mode 100644 index 0000000..142467e --- /dev/null +++ b/mastercode @@ -0,0 +1 @@ +Hurray ! From 900fecbd93cb11a6ba77c393dc2e1e14e42de4ed Mon Sep 17 00:00:00 2001 From: Gaurav Date: Sat, 14 Oct 2023 22:20:46 +0530 Subject: [PATCH 2/5] Final add --- mastercode | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mastercode b/mastercode index 142467e..f8a33e2 100644 --- a/mastercode +++ b/mastercode @@ -1 +1,3 @@ Hurray ! + +Hip Hip - Hurray !i From 3a6ad5832579ecc743bebe43937d4f6dfade412b Mon Sep 17 00:00:00 2001 From: Gaurav Date: Sun, 15 Oct 2023 10:26:56 +0530 Subject: [PATCH 3/5] I have added it to master --- mergefile | 1 + 1 file changed, 1 insertion(+) create mode 100644 mergefile diff --git a/mergefile b/mergefile new file mode 100644 index 0000000..7c7dac0 --- /dev/null +++ b/mergefile @@ -0,0 +1 @@ +Radhika From a93a7c2be3bf4cc3e4eb9e3e6682f7ce56cc8dcb Mon Sep 17 00:00:00 2001 From: Foxtrot <115617130+Gaurav5585@users.noreply.github.com> Date: Thu, 30 Nov 2023 05:32:04 +0530 Subject: [PATCH 4/5] Create blank.yml --- .github/workflows/blank.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..9f0ebb8 --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,36 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "master" branch + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo Hello, world! + + # Runs a set of commands using the runners shell + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project. From 00b14e4ac08f917c357f99fef05396bff4d7c419 Mon Sep 17 00:00:00 2001 From: Foxtrot <115617130+Gaurav5585@users.noreply.github.com> Date: Thu, 30 Nov 2023 05:33:53 +0530 Subject: [PATCH 5/5] Update blank.yml --- .github/workflows/blank.yml | 55 ++++++++++++++----------------------- 1 file changed, 20 insertions(+), 35 deletions(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index 9f0ebb8..228f50a 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -1,36 +1,21 @@ -# This is a basic workflow to help you get started with Actions - -name: CI - -# Controls when the workflow will run -on: - # Triggers the workflow on push or pull request events but only for the "master" branch - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel +name: sampleWeb_$(Date:yyyyMMdd)$(Rev:.r) +trigger: +- main jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 - - # Runs a single command using the runners shell - - name: Run a one-line script - run: echo Hello, world! - - # Runs a set of commands using the runners shell - - name: Run a multi-line script - run: | - echo Add other actions to build, - echo test, and deploy your project. +- job: ActivityonLinux + pool: + name: default + steps: + - script: echo Hello, world! + displayName: 'Run a one-line script' +- job: ActivityonWindows + pool: + name: Default + steps: + - task: PowerShell@2 + inputs: + targetType: 'inline' + script: | + # Write your PowerShell commands here. + + Write-Host "Hello World"