Skip to content

Commit

Permalink
ci: fix trigger and naming for monitors (#1854)
Browse files Browse the repository at this point in the history
  • Loading branch information
douglance authored Aug 20, 2024
1 parent cebdbee commit 35eae5a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/assertion-monitor.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
name: Assertion Monitor

on:
push:
workflow_dispatch:
schedule:
- cron: "0 */6 * * *" # Run every 6 hours

jobs:
run-monitoring:
name: Assertion Monitor (${{ matrix.chain }})
name: Assertion Monitor (${{ matrix.chain == 'orbit' && 'Orbit' || matrix.chain == 'core' && 'Core' || matrix.chain }})
strategy:
matrix:
chain: [core, orbit]
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/batch-poster-monitor.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
name: Batch Poster Monitor

on:
push:
workflow_dispatch:
schedule:
- cron: "0 */6 * * *" # Run every 6 hours

jobs:
run-monitoring:
name: Batch Poster Monitor (${{ matrix.chain }})
name: Batch Poster Monitor (${{ matrix.chain == 'orbit' && 'Orbit' || matrix.chain == 'core' && 'Core' || matrix.chain }})
strategy:
matrix:
chain: [core, orbit]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/monitoring.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ env:

jobs:
run-monitoring:
name: Run
runs-on: ubuntu-latest
steps:
- name: Checkout repositories
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/retryable-monitor.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
name: Retryable Monitor

on:
push:
workflow_dispatch:
schedule:
- cron: "3 8 * * *" # Run once a day at 08:03am GMT

jobs:
run-retryable-monitoring:
name: Retryables Monitor (${{ matrix.chain }})
name: Retryable Monitor (${{ matrix.chain == 'orbit' && 'Orbit' || matrix.chain == 'core' && 'Core' || matrix.chain }})
strategy:
matrix:
chain: [core, orbit]
Expand Down

0 comments on commit 35eae5a

Please sign in to comment.