mirror of
https://git.turbo-data.com/nprasad2077/docker-templates.git
synced 2026-09-22 16:15:53 +00:00
15 lines
222 B
YAML
15 lines
222 B
YAML
# Scheduled / manual maintenance probe.
|
|
name: scheduled-echo
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 6 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
echo:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Print date
|
|
run: date -u
|