From a33c8cd68b777c37b1b071799f86baaddcc2f7e2 Mon Sep 17 00:00:00 2001 From: Syed Muzamil Shah <126105322+SyedMuzamilShah@users.noreply.github.com> Date: Tue, 16 Sep 2025 07:10:07 +0500 Subject: [PATCH 1/4] ADDD the README TEXT --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7194f095..a11d9345 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # [Sample Repo] PR Practice A sample repo for practicing how to create Pull Requests + +# ADDING THE CLONE From e62d64adcf387faac1d3b4b00a6f8d41e88ae594 Mon Sep 17 00:00:00 2001 From: Syed Muzamil Shah <126105322+SyedMuzamilShah@users.noreply.github.com> Date: Tue, 16 Sep 2025 07:25:03 +0500 Subject: [PATCH 2/4] another feature --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a11d9345..7278f231 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,5 @@ A sample repo for practicing how to create Pull Requests # ADDING THE CLONE + +# ADDING ANOTHER FEATURE From e5193e4bc66ebcb2532a22d70c24ea08038b9efc Mon Sep 17 00:00:00 2001 From: Syed Muzamil Shah <126105322+SyedMuzamilShah@users.noreply.github.com> Date: Tue, 16 Sep 2025 07:31:49 +0500 Subject: [PATCH 3/4] 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 00000000..746e72c2 --- /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@v4 + + # 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 e7e847441a4735a920d8e49ec0438d1b33c146d0 Mon Sep 17 00:00:00 2001 From: Syed Muzamil Shah <126105322+SyedMuzamilShah@users.noreply.github.com> Date: Tue, 16 Sep 2025 07:33:55 +0500 Subject: [PATCH 4/4] Testin cli --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7278f231..50de1d8d 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,5 @@ A sample repo for practicing how to create Pull Requests # ADDING THE CLONE # ADDING ANOTHER FEATURE + +# TESTING CLI