From e7624f031a14f18b1b22e632cae0a779237d1c01 Mon Sep 17 00:00:00 2001 From: maurizio-cacace Date: Wed, 11 Jan 2023 12:19:29 +0100 Subject: [PATCH] enabling dry run --- .github/workflows/adf_alpha.yml | 2 +- .github/workflows/cron.yml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/adf_alpha.yml b/.github/workflows/adf_alpha.yml index e94dee46db..5a5cd326f2 100644 --- a/.github/workflows/adf_alpha.yml +++ b/.github/workflows/adf_alpha.yml @@ -67,7 +67,7 @@ jobs: fetch-depth: 0 - name: Trigger Alpha ADF child build shell: bash - if: ${{ contains(github.event.head_commit.message, '[trigger adf]') || inputs.cluster_operation == 'TRIGGER_ALPHA_ADF' || github.event.schedule == '0 11 * * *' }} + if: ${{ contains(github.event.head_commit.message, '[trigger adf]') || inputs.cluster_operation == 'TRIGGER_ALPHA_ADF' || github.event.schedule == '0 12 * * *' }} run: | npm install github-api ./scripts/travis/update/update-project.sh -p $TRAVIS_BUILD_NUMBER -t $GH_TOKEN -v alpha -c $TRAVIS_COMMIT -d diff --git a/.github/workflows/cron.yml b/.github/workflows/cron.yml index 5d693c4436..6cf3af50e1 100644 --- a/.github/workflows/cron.yml +++ b/.github/workflows/cron.yml @@ -2,7 +2,7 @@ name: "cron schedule" on: schedule: - - cron: '0 11 * * *' + - cron: '0 12 * * *' env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} @@ -57,3 +57,4 @@ jobs: adf-alpha-test: name: trigger alpha test uses: ./.github/workflows/adf_alpha.yml + secrets: inherit