From e62a4a855ad2c70ead238d9b0189a3e66365cc96 Mon Sep 17 00:00:00 2001 From: Balamurali Gopalswami Date: Wed, 7 Aug 2024 17:46:41 -0400 Subject: [PATCH] CCIP-2875: Enabling soak mainnet testing --- .github/workflows/ccip-live-network-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ccip-live-network-tests.yml b/.github/workflows/ccip-live-network-tests.yml index cd90d63bb5..dfc2e83219 100644 --- a/.github/workflows/ccip-live-network-tests.yml +++ b/.github/workflows/ccip-live-network-tests.yml @@ -1,8 +1,7 @@ name: CCIP On-Demand Live Network Tests on: -# Enable this when CCIP-2875 is addressed -# schedule: -# - cron: '0 */6 * * *' + schedule: + - cron: '0 */6 * * *' workflow_dispatch: inputs: base64_test_input : # base64 encoded toml for test input @@ -145,6 +144,7 @@ jobs: - name: Prepare Base64 TOML override shell: bash run: | + # this key secrets.QA_SHARED_803C_KEY has a story behind it. To know more, see CCIP-2875 and SECHD-16575 tickets. BASE64_NETWORK_CONFIG=$(echo $BASE64_NETWORK_CONFIG | base64 -w 0 -d | sed -e 's/evm_key/${{ secrets.QA_SHARED_803C_KEY }}/g' | base64 -w 0) echo ::add-mask::$BASE64_NETWORK_CONFIG echo "BASE64_NETWORK_CONFIG=$BASE64_NETWORK_CONFIG" >> "$GITHUB_ENV"