Commit 84ee443446 for openssl.org
commit 84ee443446116b25030b23c0a0b5b1fe5479d987
Author: Neil Horman <nhorman@openssl.org>
Date: Wed Jan 14 09:05:04 2026 -0500
Fix search pattern in check-news-changes CI job
The check for impacting a public api had an incorrect pattern in the
search, leading to erroneous failures. Fix it up.
Reviewed-by: Eugene Syromiatnikov <esyr@openssl.org>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Norbert Pocs <norbertp@openssl.org>
MergeDate: Thu Jan 15 17:14:30 2026
(Merged from https://github.com/openssl/openssl/pull/29636)
diff --git a/.github/workflows/check-news-changes.yml b/.github/workflows/check-news-changes.yml
index 7901b021f3..39a932ded1 100644
--- a/.github/workflows/check-news-changes.yml
+++ b/.github/workflows/check-news-changes.yml
@@ -49,7 +49,7 @@ jobs:
if: ${{ env.FOUND_NEWS_CHANGES_ADDITION == 'no' }}
run: |
set +e
- grep -q "include\/openssl" ./names.txt
+ grep -q "include/openssl" ./names.txt
if [ $? -eq 0 ]; then
echo "Changes in this PR may impact public APIS's"
echo "NEED_NEWS_CHANGES=yes" >> $GITHUB_ENV