chore(workflows): add learning_ai_clock to all repo_* workspace workflows
Updated all 5 repo_ workflows to cover all 4 workspace repos: - repo_sync-repos.md - repo_push-repos.md - repo_backup-and-push.md - repo_backup-main-branch.md - repo_commit-workspace.md
This commit is contained in:
parent
a09529c441
commit
d333b23326
@ -18,7 +18,7 @@ Run `bash scripts/backup-main.sh` from any repository root
|
|||||||
// turbo
|
// turbo
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
for repo in learning_ai_common_plat learning_voice_ai_agent learning_multimodal_memory_agents; do
|
for repo in learning_ai_common_plat learning_voice_ai_agent learning_multimodal_memory_agents learning_ai_clock; do
|
||||||
echo "━━━ Pushing $repo ━━━"
|
echo "━━━ Pushing $repo ━━━"
|
||||||
(cd ~/code/mygh/$repo && git push origin main 2>&1)
|
(cd ~/code/mygh/$repo && git push origin main 2>&1)
|
||||||
done
|
done
|
||||||
@ -36,6 +36,7 @@ echo "✨ All repos pushed!"
|
|||||||
- learning_ai_common_plat
|
- learning_ai_common_plat
|
||||||
- learning_voice_ai_agent
|
- learning_voice_ai_agent
|
||||||
- learning_multimodal_memory_agents
|
- learning_multimodal_memory_agents
|
||||||
|
- learning_ai_clock
|
||||||
|
|
||||||
## When to use:
|
## When to use:
|
||||||
|
|
||||||
|
|||||||
@ -22,6 +22,7 @@ Run `bash scripts/backup-main.sh` from any repository root
|
|||||||
- learning_ai_common_plat
|
- learning_ai_common_plat
|
||||||
- learning_voice_ai_agent
|
- learning_voice_ai_agent
|
||||||
- learning_multimodal_memory_agents
|
- learning_multimodal_memory_agents
|
||||||
|
- learning_ai_clock
|
||||||
|
|
||||||
## Features:
|
## Features:
|
||||||
|
|
||||||
|
|||||||
@ -12,10 +12,11 @@ Scans all repositories for pending changes and commits them in logical order wit
|
|||||||
|
|
||||||
## What it does:
|
## What it does:
|
||||||
|
|
||||||
1. **Scans** all 3 repos for changes:
|
1. **Scans** all 4 repos for changes:
|
||||||
- learning_ai_common_plat
|
- learning_ai_common_plat
|
||||||
- learning_voice_ai_agent
|
- learning_voice_ai_agent
|
||||||
- learning_multimodal_memory_agents
|
- learning_multimodal_memory_agents
|
||||||
|
- learning_ai_clock
|
||||||
|
|
||||||
2. **Analyzes** changed files to determine:
|
2. **Analyzes** changed files to determine:
|
||||||
- Commit scope (auth, ci, docs, feat, chore, etc.)
|
- Commit scope (auth, ci, docs, feat, chore, etc.)
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
description: Push local main branch to origin for all 3 workspace repos
|
description: Push local main branch to origin for all 4 workspace repos
|
||||||
---
|
---
|
||||||
|
|
||||||
# Push Repos
|
# Push Repos
|
||||||
@ -9,7 +9,7 @@ Pushes local `main` to `origin/main` for all workspace repositories.
|
|||||||
// turbo
|
// turbo
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
for repo in learning_ai_common_plat learning_voice_ai_agent learning_multimodal_memory_agents; do
|
for repo in learning_ai_common_plat learning_voice_ai_agent learning_multimodal_memory_agents learning_ai_clock; do
|
||||||
echo "━━━ $repo ━━━"
|
echo "━━━ $repo ━━━"
|
||||||
(cd ~/code/mygh/$repo && git push origin main)
|
(cd ~/code/mygh/$repo && git push origin main)
|
||||||
done
|
done
|
||||||
@ -17,7 +17,7 @@ done
|
|||||||
|
|
||||||
## What it does:
|
## What it does:
|
||||||
|
|
||||||
1. Iterates over all 3 workspace repos
|
1. Iterates over all 4 workspace repos
|
||||||
2. Runs `git push origin main` in each
|
2. Runs `git push origin main` in each
|
||||||
3. Fails fast if a repo has diverged from remote (resolve with rebase manually)
|
3. Fails fast if a repo has diverged from remote (resolve with rebase manually)
|
||||||
|
|
||||||
@ -26,6 +26,7 @@ done
|
|||||||
- learning_ai_common_plat
|
- learning_ai_common_plat
|
||||||
- learning_voice_ai_agent
|
- learning_voice_ai_agent
|
||||||
- learning_multimodal_memory_agents
|
- learning_multimodal_memory_agents
|
||||||
|
- learning_ai_clock
|
||||||
|
|
||||||
## When to use:
|
## When to use:
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
description: Pull latest from origin main across all workspace repos
|
description: Pull latest from origin main across all 4 workspace repos
|
||||||
---
|
---
|
||||||
|
|
||||||
# Sync Repos
|
# Sync Repos
|
||||||
@ -9,7 +9,7 @@ Pulls the latest changes from `origin/main` for all workspace repositories.
|
|||||||
// turbo
|
// turbo
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
for repo in learning_ai_common_plat learning_voice_ai_agent learning_multimodal_memory_agents; do
|
for repo in learning_ai_common_plat learning_voice_ai_agent learning_multimodal_memory_agents learning_ai_clock; do
|
||||||
echo "━━━ $repo ━━━"
|
echo "━━━ $repo ━━━"
|
||||||
(cd ~/code/mygh/$repo && git pull --ff-only origin main)
|
(cd ~/code/mygh/$repo && git pull --ff-only origin main)
|
||||||
done
|
done
|
||||||
@ -17,7 +17,7 @@ done
|
|||||||
|
|
||||||
## What it does:
|
## What it does:
|
||||||
|
|
||||||
1. Iterates over all 3 workspace repos
|
1. Iterates over all 4 workspace repos
|
||||||
2. Runs `git pull --ff-only origin main` in each
|
2. Runs `git pull --ff-only origin main` in each
|
||||||
3. Fails fast if there are local divergent commits (use `git pull --rebase` manually in that case)
|
3. Fails fast if there are local divergent commits (use `git pull --rebase` manually in that case)
|
||||||
|
|
||||||
@ -26,6 +26,7 @@ done
|
|||||||
- learning_ai_common_plat
|
- learning_ai_common_plat
|
||||||
- learning_voice_ai_agent
|
- learning_voice_ai_agent
|
||||||
- learning_multimodal_memory_agents
|
- learning_multimodal_memory_agents
|
||||||
|
- learning_ai_clock
|
||||||
|
|
||||||
## When to use:
|
## When to use:
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user