Skip to content

Commit

Permalink
Merge pull request #99 from amrathesh/cron-change
Browse files Browse the repository at this point in the history
Add scheduled cron job to build ACS images
  • Loading branch information
chetan-rathore authored Sep 11, 2023
2 parents eb90c8e + ea8e328 commit d1e16b4
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 5 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/ES_ACS_1.x.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: Build ES 1.2 ACS image

on: [push, pull_request]
on:
push:
branches: # trigger on push to master
- main
pull_request: # trigger on pull requests to master
branches:
- main
schedule:
- cron: '30 17 * * *' # Runs everyday at 11 PM IST (17:30 UTC)

jobs:
build_image:
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/IR_ACS_2.0.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
name: Build IR 2.0 ACS image

on: [push, pull_request]

on:
push:
branches: # trigger on push to master
- main
pull_request: # trigger on pull requests to master
branches:
- main
schedule:
- cron: '30 17 * * *' # Runs everyday at 11 PM IST (17:30 UTC)
jobs:
build_image:
name: Build IR 2.0 ACS image
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/SR_ACS_2.0.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
name: Build SR 2.0 ACS image

on: [push, pull_request]

on:
push:
branches: # trigger on push to master
- main
pull_request: # trigger on pull requests to master
branches:
- main
schedule:
- cron: '30 17 * * *' # Runs everyday at 11 PM IST (17:30 UTC)
jobs:
build_image:
name: Build SR 2.0 ACS image
Expand Down

0 comments on commit d1e16b4

Please sign in to comment.