AAE-11910 - cron schedule fix (#8105)

* fix cron workflow

* fix cron workflow

* fix cron workflow
This commit is contained in:
Maurizio Cacace 2023-01-05 16:08:26 +01:00 committed by GitHub
parent 80e4434f8a
commit 5e11eaf609
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View File

@ -23,7 +23,6 @@ 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.ref_name == 'develop' }}
run: ./scripts/travis/update/update-project.sh -p $TRAVIS_BUILD_NUMBER -t $GITHUB_TOKEN -v alpha -c $TRAVIS_COMMIT
if: ${{ contains(github.event.head_commit.message, '[trigger adf]') || inputs.cluster_operation == 'TRIGGER_ALPHA_ADF' || github.event.schedule == '30 15 * * *' }}
run: ./scripts/travis/update/update-project.sh -p $TRAVIS_BUILD_NUMBER -t $GITHUB_TOKEN -v alpha -c $TRAVIS_COMMIT

View File

@ -2,7 +2,7 @@ name: "cron schedule"
on:
schedule:
- cron: '0 11 * * *'
- cron: '30 15 * * *'
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}