From 6e603c5aba3df00195c0b3c3ed8e72dd96bce993 Mon Sep 17 00:00:00 2001 From: Faizahamed-dev <74110630+Faizahamed-dev@users.noreply.github.com> Date: Tue, 27 Aug 2024 11:51:56 +0530 Subject: [PATCH 1/6] Create faizmain.yml --- .github/workflows/faizmain.yml | 36 ++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/faizmain.yml diff --git a/.github/workflows/faizmain.yml b/.github/workflows/faizmain.yml new file mode 100644 index 0000000..a466083 --- /dev/null +++ b/.github/workflows/faizmain.yml @@ -0,0 +1,36 @@ +# This is a basic workflow to help you get started with Actions + +name: 010-blank-workflow + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the main branch + push: + branches: none # [ main ] + pull_request: + branches: none # [ main ] + + # 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 3725cecb7aee2b421169809ec566c8951e3d9f6b Mon Sep 17 00:00:00 2001 From: Faizahamed-dev <74110630+Faizahamed-dev@users.noreply.github.com> Date: Tue, 27 Aug 2024 11:54:20 +0530 Subject: [PATCH 2/6] Create main.yml --- .github/workflows/main.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..a466083 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,36 @@ +# This is a basic workflow to help you get started with Actions + +name: 010-blank-workflow + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the main branch + push: + branches: none # [ main ] + pull_request: + branches: none # [ main ] + + # 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 9b5ce76dee173e32d485a9025350e766fceb2767 Mon Sep 17 00:00:00 2001 From: Faizahamed-dev <74110630+Faizahamed-dev@users.noreply.github.com> Date: Tue, 27 Aug 2024 12:00:32 +0530 Subject: [PATCH 3/6] Create faizmanual.yml --- .github/workflows/faizmanual.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/faizmanual.yml diff --git a/.github/workflows/faizmanual.yml b/.github/workflows/faizmanual.yml new file mode 100644 index 0000000..11b2e35 --- /dev/null +++ b/.github/workflows/faizmanual.yml @@ -0,0 +1,32 @@ +# This is a basic workflow that is manually triggered + +name: Manual workflow + +# Controls when the action will run. Workflow runs when manually triggered using the UI +# or API. +on: + workflow_dispatch: + # Inputs the workflow accepts. + inputs: + name: + # Friendly description to be shown in the UI instead of 'name' + description: 'Person to greet' + # Default value if no value is explicitly provided + default: 'World' + # Input has to be provided for the workflow to run + required: true + # The data type of the input + type: string + +# 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 "greet" + greet: + # 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: + # Runs a single command using the runners shell + - name: Send greeting + run: echo "Hello ${{ inputs.name }}" From c53d7be041bd9ee0aa91e8dbb16950ba89053f5c Mon Sep 17 00:00:00 2001 From: Faizahamed-dev <74110630+Faizahamed-dev@users.noreply.github.com> Date: Tue, 27 Aug 2024 12:59:44 +0530 Subject: [PATCH 4/6] Create dotnet.yml --- .github/workflows/dotnet.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/dotnet.yml diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml new file mode 100644 index 0000000..8b28ab5 --- /dev/null +++ b/.github/workflows/dotnet.yml @@ -0,0 +1,29 @@ +# This workflow will build a .NET project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net + +name: .NET + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 8.0.x + - name: Restore dependencies + run: dotnet restore + - name: Build + run: dotnet build --no-restore + - name: Test + run: dotnet test --no-build --verbosity normal From f76933a5de62b9cfd765d2ee652628d280a588b8 Mon Sep 17 00:00:00 2001 From: Faizahamed-dev <74110630+Faizahamed-dev@users.noreply.github.com> Date: Tue, 27 Aug 2024 16:51:42 +0530 Subject: [PATCH 5/6] Create installnode.yaml --- .github/workflows/installnode.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/installnode.yaml diff --git a/.github/workflows/installnode.yaml b/.github/workflows/installnode.yaml new file mode 100644 index 0000000..1f403a9 --- /dev/null +++ b/.github/workflows/installnode.yaml @@ -0,0 +1,13 @@ +name: First Workflow +on: [push] + +jobs: + run-shell-commands: + runs-on: ubuntu-latest + steps: + - name: echo a string + run: echo "Hello World" + - name: Multiline Command + run: | + node -v + npm -v From e774001c2603e533d8d193daa609ded250fc85b6 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 30 Aug 2024 19:04:14 +0530 Subject: [PATCH 6/6] first commit --- .github/workflows/faizmain.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/faizmain.yml b/.github/workflows/faizmain.yml index a466083..1829fb4 100644 --- a/.github/workflows/faizmain.yml +++ b/.github/workflows/faizmain.yml @@ -28,6 +28,9 @@ jobs: # Runs a single command using the runners shell - name: Run a one-line script run: echo Hello, world! + + - name: Run a one-line script + run: faiz # Runs a set of commands using the runners shell - name: Run a multi-line script