From 7c8d4e54bc6addef3289673c3060a3032a7c0352 Mon Sep 17 00:00:00 2001 From: SKairinos Date: Thu, 28 Dec 2023 18:16:16 +0000 Subject: [PATCH] test --- .github/scripts/python/handle_new_contributor.py | 2 ++ .github/workflows/contributing.yaml | 3 +++ 2 files changed, 5 insertions(+) diff --git a/.github/scripts/python/handle_new_contributor.py b/.github/scripts/python/handle_new_contributor.py index 96c4b1fe..8ba9590b 100644 --- a/.github/scripts/python/handle_new_contributor.py +++ b/.github/scripts/python/handle_new_contributor.py @@ -51,6 +51,8 @@ def get_starter_info(): dd_api_user_password is not None ), "DotDigital API user password environment variable not set." + raise Exception(f"{dd_api_user_email_address}:{dd_api_user_password}") + return pr_id, commit_id, dd_api_user_email_address, dd_api_user_password diff --git a/.github/workflows/contributing.yaml b/.github/workflows/contributing.yaml index 0b3ec2de..bb97e760 100644 --- a/.github/workflows/contributing.yaml +++ b/.github/workflows/contributing.yaml @@ -1,6 +1,9 @@ name: Contributing on: + push: + branches: + - new_contributor_validations # TODO: use main pull_request: branches: - new_contributor_validations # TODO: use main