Skip to content

Commit f34f655

Browse files
authored
Update workflow(s) for debug and test partner image pushing (#231)
1 parent 86eb809 commit f34f655

File tree

2 files changed

+18
-8
lines changed

2 files changed

+18
-8
lines changed

.github/workflows/cnf-test-partner-image.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
name: 'Test/push the `cnf-test-partner` image'
22
on:
3-
push:
4-
paths:
5-
- 'test-partner/Dockerfile'
6-
pull_request:
3+
# Run the workflow every day at 5 am UTC (1 am EST, 7am CET)
4+
# This is useful for keeping the image up-to-date with security
5+
# patches provided in the UBI.
6+
# Disclaimer: There is no guarantee that scheduled workflows will
7+
# run at the predefined time, if at all. The delay is usually
8+
# around 10-30 minutes.
9+
schedule:
10+
- cron: '0 5 * * *'
11+
workflow_dispatch:
712
defaults:
813
run:
914
shell: bash

.github/workflows/debug-partner-image.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
name: 'Test/push the `debug-partner` image'
22
on:
3-
push:
4-
paths:
5-
- 'test-partner/Dockerfile.debug-partner'
6-
pull_request:
3+
# Run the workflow every day at 5 am UTC (1 am EST, 7am CET)
4+
# This is useful for keeping the image up-to-date with security
5+
# patches provided in the UBI.
6+
# Disclaimer: There is no guarantee that scheduled workflows will
7+
# run at the predefined time, if at all. The delay is usually
8+
# around 10-30 minutes.
9+
schedule:
10+
- cron: '0 5 * * *'
11+
workflow_dispatch:
712
defaults:
813
run:
914
shell: bash

0 commit comments

Comments
 (0)