93686531a7
Gitea Branch PR & Ansible Deployment / Check and Create PR (push) Successful in 42s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (benedikta) (push) Successful in 4m58s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (rikku) (push) Successful in 5m4s
Gitea Branch PR & Ansible Deployment / Ansible Dry Run (rinoa) (push) Successful in 5m59s
Gitea Branch PR & Ansible Deployment / PR Merge (push) Successful in 37s
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (benedikta) (push) Successful in 4m31s
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (rikku) (push) Successful in 4m31s
Gitea Branch PR & Ansible Deployment / Ansible Config Deployment (rinoa) (push) Successful in 4m55s
22 lines
544 B
YAML
22 lines
544 B
YAML
# Scheduled Workflows
|
|
# Run workflows automatically on a schedule
|
|
|
|
description: Example of a scheduled workflow
|
|
# Uncomment to run daily at 2:00 AM
|
|
# schedule: "0 2 * * *"
|
|
|
|
# Schedule examples:
|
|
# "0 * * * *" - Every hour
|
|
# "*/5 * * * *" - Every 5 minutes
|
|
# "0 9 * * 1-5" - Weekdays at 9 AM
|
|
# "0 0 1 * *" - First day of each month
|
|
|
|
histRetentionDays: 7 # Keep 7 days of history
|
|
|
|
steps:
|
|
- command: |
|
|
echo "Running scheduled task"
|
|
echo "Current time: $(date)"
|
|
|
|
- command: echo "Cleaning up old data"
|