Skip to content

Commit

Permalink
add cron to docker build CIs
Browse files Browse the repository at this point in the history
  • Loading branch information
mgonzs13 committed Nov 19, 2024
1 parent 3d59c9f commit 260b854
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/foxy-docker-build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Foxy Docker Build

on: [push, pull_request]
on:
push:
pull_request:
schedule:
- cron: "0 5 * * 1"

jobs:
foxy_docker_build:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/galactic-docker-build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Galactic Docker Build

on: [push, pull_request]
on:
push:
pull_request:
schedule:
- cron: "0 5 * * 1"

jobs:
galactic_docker_build:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/humble-docker-build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Humble Docker Build

on: [push, pull_request]
on:
push:
pull_request:
schedule:
- cron: "0 5 * * 1"

jobs:
humble_docker_build:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/iron-docker-build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Iron Docker Build

on: [push, pull_request]
on:
push:
pull_request:
schedule:
- cron: "0 5 * * 1"

jobs:
iron_docker_build:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/jazzy-docker-build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Jazzy Docker Build

on: [push, pull_request]
on:
push:
pull_request:
schedule:
- cron: "0 5 * * 1"

jobs:
jazzy_docker_build:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/rolling-docker-build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Rolling Docker Build

on: [push, pull_request]
on:
push:
pull_request:
schedule:
- cron: "0 5 * * 1"

jobs:
rolling_docker_build:
Expand Down

0 comments on commit 260b854

Please sign in to comment.