change cron schedule for cron workflow

This commit is contained in:
maurizio-cacace 2023-01-05 17:29:54 +01:00
parent f5b78bd573
commit 198c230086
No known key found for this signature in database
GPG Key ID: BC860F452395F645
2 changed files with 2 additions and 2 deletions

View File

@ -66,6 +66,6 @@ jobs:
fetch-depth: 0 fetch-depth: 0
- name: Trigger Alpha ADF child build - name: Trigger Alpha ADF child build
shell: bash shell: bash
if: ${{ contains(github.event.head_commit.message, '[trigger adf]') || inputs.cluster_operation == 'TRIGGER_ALPHA_ADF' || github.event.schedule == '00 16 * * *' }} if: ${{ contains(github.event.head_commit.message, '[trigger adf]') || inputs.cluster_operation == 'TRIGGER_ALPHA_ADF' || github.event.schedule == '0 0 1 * *' }}
run: ./scripts/travis/update/update-project.sh -p $TRAVIS_BUILD_NUMBER -t $GITHUB_TOKEN -v alpha -c $TRAVIS_COMMIT 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: on:
schedule: schedule:
- cron: '00 16 * * *' - cron: '0 0 1 * *'
env: env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}