You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See the `/add-trigger` skill for creating triggers.
579
581
582
+
## Icon Requirement
583
+
584
+
If the icon doesn't already exist in `@/components/icons.tsx`, **do NOT search for it yourself**. After completing the block, ask the user to provide the SVG:
585
+
586
+
```
587
+
The block is complete, but I need an icon for {Service}.
588
+
Please provide the SVG and I'll convert it to a React component.
589
+
590
+
You can usually find this in the service's brand/press kit page, or copy it from their website.
591
+
```
592
+
580
593
## Checklist Before Finishing
581
594
582
595
-[ ] All subBlocks have `id`, `title` (except switch), and `type`
@@ -588,4 +601,5 @@ See the `/add-trigger` skill for creating triggers.
Copy file name to clipboardExpand all lines: .github/workflows/i18n.yml
+14-13Lines changed: 14 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,10 @@
1
1
name: 'Auto-translate Documentation'
2
2
3
3
on:
4
-
push:
5
-
branches: [ staging ]
6
-
paths:
7
-
- 'apps/docs/content/docs/en/**'
8
-
- 'apps/docs/i18n.json'
4
+
schedule:
5
+
# Run every Sunday at midnight UTC
6
+
- cron: '0 0 * * 0'
7
+
workflow_dispatch: # Allow manual triggers
9
8
10
9
permissions:
11
10
contents: write
@@ -20,6 +19,7 @@ jobs:
20
19
- name: Checkout repository
21
20
uses: actions/checkout@v4
22
21
with:
22
+
ref: staging
23
23
token: ${{ secrets.GH_PAT }}
24
24
fetch-depth: 0
25
25
@@ -68,12 +68,11 @@ jobs:
68
68
title: "feat(i18n): update translations"
69
69
body: |
70
70
## Summary
71
-
Automated translation updates triggered by changes to documentation.
72
-
73
-
This PR was automatically created after content changes were made, updating translations for all supported languages using Lingo.dev AI translation engine.
Automated weekly translation updates for documentation.
72
+
73
+
This PR was automatically created by the scheduled weekly i18n workflow, updating translations for all supported languages using Lingo.dev AI translation engine.
0 commit comments