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"