Skip to content

Commit

Permalink
ci: change cron frequency to fix ghost jobs (#2010)
Browse files Browse the repository at this point in the history
Description: Change frequency of cron jobs.
  • Loading branch information
joshua-goldstein committed Sep 29, 2023
1 parent 2aea1ca commit 27724c4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-aqua-security-trivy-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
branches:
- main
schedule:
- cron: "0 * * * *"
- cron: "1 0 * * *"
jobs:
build:
name: trivy-tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-badger-bank-tests-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- main
- 'release/v*'
schedule:
- cron: "0 3 * * *"
- cron: "1 3 * * *"
jobs:
badger-bank:
runs-on: ubuntu-20.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-badger-bank-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- main
- 'release/v*'
schedule:
- cron: "*/30 * * * *"
- cron: "1 0 * * *"
jobs:
badger-bank:
runs-on: ubuntu-20.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-badger-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- main
- 'release/v*'
schedule:
- cron: "*/30 * * * *"
- cron: "1 0 * * *"
jobs:
badger-tests:
runs-on: ubuntu-20.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-dgraph-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- main
jobs:
dgraph-tests:
runs-on: [self-hosted, x64]
runs-on: ubuntu-20.04-32gb
steps:
- name: Checkout Dgraph repo
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-golang-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- main
- 'release/v*'
schedule:
- cron: "*/30 * * * *"
- cron: "1 0 * * *"
jobs:
go-lint:
name: lint
Expand Down

0 comments on commit 27724c4

Please sign in to comment.