Skip to content

Commit

Permalink
chore: GitHub Actions: adapt triggers and schedule
Browse files Browse the repository at this point in the history
Changelog: Title
Ticket: None

Signed-off-by: Josef Holzmayr <[email protected]>
  • Loading branch information
TheYoctoJester committed Jan 10, 2025
1 parent 7070374 commit acf4471
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build_boards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@ name: build_boards

on:
workflow_dispatch:
workflow_run:
workflows: ["cache layers"]
types:
- completed
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '5 2 * * 6'

env:
BUILDDIR: build
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/build_demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@ name: build_demos

on:
workflow_dispatch:
workflow_run:
workflows: ["cache layers"]
types:
- completed
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '5 2 * * 6'

env:
BUILDDIR: demos
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: build_validation

on:
workflow_dispatch:
workflow_run:
workflows: ["cache layers"]
types:
- completed
push:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '5 2 * * 6'

env:
BUILDDIR: validation
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/cache_layers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ name: cache_layers

on:
workflow_dispatch:
push:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '5 2 * * 6'
- cron: '5 1 * * *'

jobs:
prepare:
Expand Down

0 comments on commit acf4471

Please sign in to comment.