Skip to content

Commit da091df

Browse files
authored
v0.4.17: input format + files support for webhooks, docs updates, dashboard improvements
2 parents 04f109c + 29c7827 commit da091df

File tree

75 files changed

+6045
-2572
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+6045
-2572
lines changed

.gitattributes

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Set default behavior to automatically normalize line endings
2+
* text=auto eol=lf
3+
4+
# Explicitly declare text files you want to always be normalized and converted
5+
# to native line endings on checkout
6+
*.ts text eol=lf
7+
*.tsx text eol=lf
8+
*.js text eol=lf
9+
*.jsx text eol=lf
10+
*.json text eol=lf
11+
*.md text eol=lf
12+
*.yml text eol=lf
13+
*.yaml text eol=lf
14+
*.toml text eol=lf
15+
*.css text eol=lf
16+
*.scss text eol=lf
17+
*.sh text eol=lf
18+
*.bash text eol=lf
19+
Dockerfile* text eol=lf
20+
.dockerignore text eol=lf
21+
.gitignore text eol=lf
22+
.gitattributes text eol=lf
23+
24+
# Denote all files that are truly binary and should not be modified
25+
*.png binary
26+
*.jpg binary
27+
*.jpeg binary
28+
*.gif binary
29+
*.ico binary
30+
*.woff binary
31+
*.woff2 binary
32+
*.ttf binary
33+
*.eot binary
34+
*.pdf binary

.github/workflows/i18n.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
name: 'Auto-translate Documentation'
22

3-
# Temporarily disabled
43
on:
5-
workflow_dispatch: # Allow manual triggers only
6-
# push:
7-
# branches: [ staging ]
8-
# paths:
9-
# - 'apps/docs/content/docs/en/**'
10-
# - 'apps/docs/i18n.json'
4+
push:
5+
branches: [ staging ]
6+
paths:
7+
- 'apps/docs/content/docs/en/**'
8+
- 'apps/docs/i18n.json'
119

1210
permissions:
1311
contents: write

apps/docs/content/docs/de/blocks/guardrails.mdx

Lines changed: 143 additions & 144 deletions
Large diffs are not rendered by default.

apps/docs/content/docs/de/execution/api.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ app.post('/sim-webhook', (req, res) => {
535535
// Handle error...
536536
} else {
537537
console.log(`Workflow ${workflowId} completed: ${executionId}`);
538-
console.log(`Cost: ${cost.total}`);
538+
console.log(`Cost: $${cost.total}`);
539539
// Process successful execution...
540540
}
541541
break;

0 commit comments

Comments
 (0)