From ada728f1ba8bb10f51208db6450070ebd7802929 Mon Sep 17 00:00:00 2001 From: Kevin Pouget Date: Mon, 4 May 2026 16:48:04 +0200 Subject: [PATCH] [core] ci_entrypoint: github: pr_args lookup for author or COLLABORATOR --- projects/core/ci_entrypoint/github/pr_args.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/core/ci_entrypoint/github/pr_args.py b/projects/core/ci_entrypoint/github/pr_args.py index 9692537d..3a914f7c 100755 --- a/projects/core/ci_entrypoint/github/pr_args.py +++ b/projects/core/ci_entrypoint/github/pr_args.py @@ -2,7 +2,7 @@ """ GitHub PR Arguments Parser -Fetches GitHub PR comments, finds the last comment from the PR author or CONTRIBUTOR, +Fetches GitHub PR comments, finds the last comment from the PR author or COLLABORATOR, and extracts test configuration from special directives. Converts the bash script pr_args.sh to Python with enhanced error handling and structure. @@ -25,7 +25,7 @@ logger = logging.getLogger(__name__) -REQUIRED_AUTHOR_ASSOCIATION = "CONTRIBUTOR" +REQUIRED_AUTHOR_ASSOCIATION = "COLLABORATOR" DEFAULT_REPO_OWNER = "openshift-psap" DEFAULT_REPO_NAME = "forge"