File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 1111# When it runs:
1212# - Weekly on Mondays at 6:00 AM UTC (08:00–09:00 Romania time, depending on DST)
1313# - Runs automatically via GitHub Actions schedule (cron)
14+ # - Can be triggered manually via workflow_dispatch (Actions tab → Run workflow)
15+ # - Can be triggered via API using repository_dispatch with type "sync-docs"
1416#
1517# What it does:
1618# 1. Clones both the website and beman repositories
@@ -35,6 +37,10 @@ name: Auto-sync Beman Docs
3537on :
3638 schedule :
3739 - cron : ' 0 6 * * MON' # 08:00–09:00 Romania time (depending on DST)
40+ workflow_dispatch : # Manual trigger for testing
41+ repository_dispatch : # API trigger for on-demand runs
42+ types :
43+ - sync-docs
3844
3945permissions :
4046 contents : write
You can’t perform that action at this time.
0 commit comments