From dbcaeabb560545f5961281b7656c1759c9240a2c Mon Sep 17 00:00:00 2001 From: Mansi Saxena <60621421+mansi332009@users.noreply.github.com> Date: Sun, 28 Dec 2025 22:59:00 +0530 Subject: [PATCH] Change author name to 'Abhishek Veeramalla' Updated author name in the script header. --- github-api-integration-module.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/github-api-integration-module.sh b/github-api-integration-module.sh index d94d2951..48d08d00 100644 --- a/github-api-integration-module.sh +++ b/github-api-integration-module.sh @@ -1,6 +1,6 @@ #!/bin/bash ################################ -# Author: Abhishek +# Author: Abhishek Veeramalla # Version: v1 # # @@ -24,8 +24,6 @@ GITHUB_API_HEADER_ACCEPT="Accept: application/vnd.github.v3+json" temp=`basename $0` TMPFILE=`mktemp /tmp/${temp}.XXXXXX` || exit 1 - - function rest_call { curl -s $1 -H "${GITHUB_API_HEADER_ACCEPT}" -H "Authorization: token $GITHUB_TOKEN" >> $TMPFILE }