From 47ac14a9c32e66cf03d28e9a322ede7b2fd00081 Mon Sep 17 00:00:00 2001 From: Muneeswara Babu Macherla Date: Sun, 12 Jul 2026 11:45:28 +0530 Subject: [PATCH 01/13] added a new line --- github-api-integration-module.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/github-api-integration-module.sh b/github-api-integration-module.sh index d94d2951..36c71900 100644 --- a/github-api-integration-module.sh +++ b/github-api-integration-module.sh @@ -9,6 +9,7 @@ # Usage: # Please provide your github token and rest api to the script as input # +# Added this line # ################################ From 1553e52b37caf6c978e5ae345ab7e0cb95bf7183 Mon Sep 17 00:00:00 2001 From: Muneeswar DevOps Date: Sun, 12 Jul 2026 11:57:15 +0530 Subject: [PATCH 02/13] Update README to clarify Shell Scripts section --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c6345487..9de3095c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # Shell -Schell Scripts +Schell Scripts for reference From b8964cd79c07e87cd087f775deaa5933e308dbb9 Mon Sep 17 00:00:00 2001 From: Muneeswar DevOps Date: Sun, 12 Jul 2026 12:01:14 +0530 Subject: [PATCH 03/13] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9de3095c..a82de667 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # Shell -Schell Scripts for reference +Schell Scripts for reference and practice From a19939081e2e76b5d97a501bd83d26d756f81a53 Mon Sep 17 00:00:00 2001 From: Muneeswar DevOps Date: Sun, 12 Jul 2026 12:51:00 +0530 Subject: [PATCH 04/13] Create test1.sh --- test1.sh | 1 + 1 file changed, 1 insertion(+) create mode 100644 test1.sh diff --git a/test1.sh b/test1.sh new file mode 100644 index 00000000..a5bce3fd --- /dev/null +++ b/test1.sh @@ -0,0 +1 @@ +test1 From b7b78740f6f9a01ef388c295aa2a8a66e29b0867 Mon Sep 17 00:00:00 2001 From: Muneeswar DevOps Date: Sun, 12 Jul 2026 12:51:44 +0530 Subject: [PATCH 05/13] Add test2.sh with initial content --- test2.sh | 1 + 1 file changed, 1 insertion(+) create mode 100644 test2.sh diff --git a/test2.sh b/test2.sh new file mode 100644 index 00000000..180cf832 --- /dev/null +++ b/test2.sh @@ -0,0 +1 @@ +test2 From a01267b4366745108daec5a2fd07cec250bd211d Mon Sep 17 00:00:00 2001 From: Muneeswar DevOps Date: Sun, 12 Jul 2026 13:00:49 +0530 Subject: [PATCH 06/13] Create test3.sh --- test3.sh | 1 + 1 file changed, 1 insertion(+) create mode 100644 test3.sh diff --git a/test3.sh b/test3.sh new file mode 100644 index 00000000..df6b0d2b --- /dev/null +++ b/test3.sh @@ -0,0 +1 @@ +test3 From c4fe2aaafdb6eeb01413852810d858e2e29232f4 Mon Sep 17 00:00:00 2001 From: Muneeswar DevOps Date: Sun, 12 Jul 2026 13:01:10 +0530 Subject: [PATCH 07/13] Add test4.sh with initial content --- test4.sh | 1 + 1 file changed, 1 insertion(+) create mode 100644 test4.sh diff --git a/test4.sh b/test4.sh new file mode 100644 index 00000000..d234c5e0 --- /dev/null +++ b/test4.sh @@ -0,0 +1 @@ +test4 From 99c0e7f0f7fd09f0c46fd8642ae377a78ce23f3e Mon Sep 17 00:00:00 2001 From: Muneeswar DevOps Date: Sun, 12 Jul 2026 16:03:36 +0530 Subject: [PATCH 08/13] Update github-api-integration-module.sh --- github-api-integration-module.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/github-api-integration-module.sh b/github-api-integration-module.sh index 36c71900..84aece03 100644 --- a/github-api-integration-module.sh +++ b/github-api-integration-module.sh @@ -18,8 +18,8 @@ if [ ${#@} -lt 2 ]; then exit 1; fi -GITHUB_TOKEN=$1 -GITHUB_API_REST=$2 +GITHUB_TOKEN=$3 +GITHUB_API_REST=$4 GITHUB_API_HEADER_ACCEPT="Accept: application/vnd.github.v3+json" From 24cf342f003853798001ba25e7ca95b4c640e4a3 Mon Sep 17 00:00:00 2001 From: Muneeswar DevOps Date: Sun, 12 Jul 2026 16:04:01 +0530 Subject: [PATCH 09/13] Change parameter indices for GitHub API script Update positional parameters for GitHub token and REST expression. --- github-api-integration-module.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/github-api-integration-module.sh b/github-api-integration-module.sh index d94d2951..1d8a1886 100644 --- a/github-api-integration-module.sh +++ b/github-api-integration-module.sh @@ -17,8 +17,8 @@ if [ ${#@} -lt 2 ]; then exit 1; fi -GITHUB_TOKEN=$1 -GITHUB_API_REST=$2 +GITHUB_TOKEN=$5 +GITHUB_API_REST=$6 GITHUB_API_HEADER_ACCEPT="Accept: application/vnd.github.v3+json" From f474037a446bbf582652f8d56d5512e046347582 Mon Sep 17 00:00:00 2001 From: Muneeswara Babu Macherla Date: Sun, 12 Jul 2026 16:19:10 +0530 Subject: [PATCH 10/13] Changed back --- github-api-integration-module.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/github-api-integration-module.sh b/github-api-integration-module.sh index 5eef0cca..3f53371c 100644 --- a/github-api-integration-module.sh +++ b/github-api-integration-module.sh @@ -18,8 +18,8 @@ if [ ${#@} -lt 2 ]; then exit 1; fi -GITHUB_TOKEN=$3 -GITHUB_API_REST=$4 +GITHUB_TOKEN=$1 +GITHUB_API_REST=$2 GITHUB_API_HEADER_ACCEPT="Accept: application/vnd.github.v3+json" From 540ae9021a82d48e52d5cc91184094946842ef48 Mon Sep 17 00:00:00 2001 From: Muneeswara Babu Macherla Date: Sun, 12 Jul 2026 16:20:26 +0530 Subject: [PATCH 11/13] Changed back to --- github-api-integration-module.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/github-api-integration-module.sh b/github-api-integration-module.sh index 3f53371c..ef9724b6 100644 --- a/github-api-integration-module.sh +++ b/github-api-integration-module.sh @@ -18,8 +18,8 @@ if [ ${#@} -lt 2 ]; then exit 1; fi -GITHUB_TOKEN=$1 -GITHUB_API_REST=$2 +GITHUB_TOKEN=$11 +GITHUB_API_REST=$22 GITHUB_API_HEADER_ACCEPT="Accept: application/vnd.github.v3+json" From d770c1a8104cc08b25cf11f6c93296188ef365d2 Mon Sep 17 00:00:00 2001 From: Muneeswara Babu Macherla Date: Sun, 12 Jul 2026 16:21:08 +0530 Subject: [PATCH 12/13] Changed back to Original --- github-api-integration-module.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/github-api-integration-module.sh b/github-api-integration-module.sh index 1d8a1886..d94d2951 100644 --- a/github-api-integration-module.sh +++ b/github-api-integration-module.sh @@ -17,8 +17,8 @@ if [ ${#@} -lt 2 ]; then exit 1; fi -GITHUB_TOKEN=$5 -GITHUB_API_REST=$6 +GITHUB_TOKEN=$1 +GITHUB_API_REST=$2 GITHUB_API_HEADER_ACCEPT="Accept: application/vnd.github.v3+json" From 5f61ebac983f2bb1ee5c50c32db3ce92e72b8245 Mon Sep 17 00:00:00 2001 From: Muneeswara Babu Macherla Date: Sun, 12 Jul 2026 16:28:51 +0530 Subject: [PATCH 13/13] removed i --- github-api-integration-module.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-api-integration-module.sh b/github-api-integration-module.sh index 3f53371c..36c71900 100644 --- a/github-api-integration-module.sh +++ b/github-api-integration-module.sh @@ -1,4 +1,4 @@ -i#!/bin/bash +#!/bin/bash ################################ # Author: Abhishek # Version: v1