mirror of
https://github.com/redhat-actions/push-to-registry.git
synced 2025-04-19 22:26:18 +02:00
Add cron in the workflows
Signed-off-by: divyansh42 <diagrawa@redhat.com>
This commit is contained in:
parent
b5dbf66601
commit
002092527f
3 changed files with 7 additions and 0 deletions
2
.github/workflows/link_check.yml
vendored
2
.github/workflows/link_check.yml
vendored
|
@ -6,6 +6,8 @@ on:
|
|||
pull_request:
|
||||
paths:
|
||||
-'**.md'
|
||||
schedule:
|
||||
- cron: '0 0 * * *' # every day at midnight
|
||||
|
||||
jobs:
|
||||
markdown-link-check:
|
||||
|
|
3
.github/workflows/multiple-build.yaml
vendored
3
.github/workflows/multiple-build.yaml
vendored
|
@ -2,6 +2,9 @@ name: Multiple container CLI build tests
|
|||
on:
|
||||
push:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '0 0 * * *' # every day at midnight
|
||||
|
||||
env:
|
||||
IMAGE_NAME: myimage
|
||||
IMAGE_TAG: v1
|
||||
|
|
2
.github/workflows/verify-push.yaml
vendored
2
.github/workflows/verify-push.yaml
vendored
|
@ -5,6 +5,8 @@ name: Test Build and Push
|
|||
on:
|
||||
push:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '0 0 * * *' # every day at midnight
|
||||
|
||||
env:
|
||||
PROJECT_DIR: spring-petclinic
|
||||
|
|
Loading…
Add table
Reference in a new issue