From 26d14ae0abf4c82f6c8a16790b1da46fa9fac089 Mon Sep 17 00:00:00 2001 From: sabique Date: Fri, 18 Jul 2025 22:59:43 +0530 Subject: [PATCH 1/2] docs: add project README.md with overview --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index e69de29..da6b3eb 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,7 @@ +# nopejs Bot + +➤ Auto-generates concise summaries for GitHub pull requests using Gemini. + +## Overview + +nopejs is a GitHub Action that triggers on PR events, analyzes the PR content, and posts a summary. \ No newline at end of file From 16d5149bae88d9b3f67e03d9d9d7ccbaed31e7da Mon Sep 17 00:00:00 2001 From: sabique Date: Fri, 18 Jul 2025 23:08:26 +0530 Subject: [PATCH 2/2] chore: add debug statement to print the summary output --- .github/workflows/summarizer.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/summarizer.yml b/.github/workflows/summarizer.yml index ea262c1..a36f5b0 100644 --- a/.github/workflows/summarizer.yml +++ b/.github/workflows/summarizer.yml @@ -26,4 +26,7 @@ jobs: env: GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: python src/main.py \ No newline at end of file + run: | + SUMMARY=$(python src/main.py) + echo "----- SUMMARY OUTPUT BELOW -----" + echo "$SUMMARY" \ No newline at end of file