From 21813394b7bb70d0888b87ca234089b882c0f09c Mon Sep 17 00:00:00 2001 From: Gabriel Logan Date: Sat, 31 Aug 2024 16:21:41 -0300 Subject: [PATCH] chore: update prcheck --- .github/workflows/pr-check.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index a12a8ef..97be77f 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -38,9 +38,13 @@ jobs: - name: Verify script logs run: | # Ensure that certain expected outputs are present in the logs - if grep -q "Cleaning Memory..." script_output.log; then + if grep -q "Cleaning memory..." script_output.log; then echo "Memory cleaning step executed." else echo "Memory cleaning step missing." exit 1 - fi + if grep -q "by: Gabriel Logan" script_output.log; then + echo "Author information present." + else + echo "Author information missing." + exit 1 \ No newline at end of file