Skip to content

Commit 82c1a58

Browse files
authored
Merge branch 'dev' into patch-workflow
2 parents a2ebc5b + ad42033 commit 82c1a58

File tree

152 files changed

+2010
-1181
lines changed

Some content is hidden

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

152 files changed

+2010
-1181
lines changed

.all-contributorsrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12791,6 +12791,15 @@
1279112791
"contributions": [
1279212792
"content"
1279312793
]
12794+
},
12795+
{
12796+
"login": "zeevick10",
12797+
"name": "FT",
12798+
"avatar_url": "https://avatars.githubusercontent.com/u/140458077?v=4",
12799+
"profile": "https://github.com/zeevick10",
12800+
"contributions": [
12801+
"content"
12802+
]
1279412803
}
1279512804
],
1279612805
"contributorsPerLine": 7,

.github/workflows/chromatic.yml

Lines changed: 16 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,8 @@ name: Chromatic Publish and Testing
66
# Event for the workflow
77
on:
88
pull_request:
9-
types:
10-
- opened
11-
- synchronize
12-
- ready_for_review
13-
paths:
14-
# Only run on file changes in any of these paths
15-
- "src/components/**/*"
16-
- "src/pages/**/*"
17-
- "src/layouts/**/*"
18-
- ".storybook/**/*"
19-
- "tailwind.config.ts"
20-
- "src/styles/**/*"
9+
branches: [master, staging, "test/**"]
10+
types: [opened, synchronize, ready_for_review]
2111

2212
# List of jobs
2313
jobs:
@@ -26,11 +16,17 @@ jobs:
2616
runs-on: ubuntu-latest
2717
# Job steps
2818
steps:
29-
# 👇 Version 2 of the action
3019
- name: Checkout repo
31-
uses: actions/checkout@v2
20+
uses: actions/checkout@v4
3221
with:
33-
fetch-depth: 0 # 👈 Required to retrieve git history
22+
fetch-depth: 0
23+
# Tells the checkout which commit hash to reference
24+
ref: ${{ github.event.pull_request.head.ref }}
25+
env:
26+
CHROMATIC_BRANCH: ${{ github.event.pull_request.head.ref || github.ref_name }}
27+
CHROMATIC_SHA: ${{ github.event.pull_request.head.sha || github.ref }}
28+
CHROMATIC_SLUG: ${{ github.repository }}
29+
3430
- name: Setup pnpm
3531
uses: pnpm/action-setup@v2
3632
with:
@@ -39,15 +35,16 @@ jobs:
3935
uses: actions/setup-node@v3
4036
with:
4137
node-version: 20
42-
cache: 'pnpm'
38+
cache: "pnpm"
39+
4340
- name: Install deps
44-
# 👇 Install dependencies with the same package manager used in the project (replace it as needed), e.g. yarn, npm, pnpm
4541
run: pnpm install
42+
4643
- name: Publish to Chromatic
47-
# 👇 Adds Chromatic as a step in the workflow
4844
uses: chromaui/action@v1
49-
# Options required for Chromatic's GitHub Action
5045
with:
5146
projectToken: fee8e66c9916
5247
# 👇 Only fail if Storybook contains stories that error
5348
exitZeroOnChanges: true
49+
onlyChanged: true # enables TurboSnap
50+
zip: true

.github/workflows/claude.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Claude PR Assistant
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
pull_request_review_comment:
7+
types: [created]
8+
issues:
9+
types: [opened, assigned]
10+
pull_request_review:
11+
types: [submitted]
12+
13+
jobs:
14+
claude-code-action:
15+
if: |
16+
(
17+
github.event_name == 'issue_comment' &&
18+
contains(github.event.comment.body, '@claude') &&
19+
contains('minimalsm,pettinarip,wackerow,corwintines', github.event.comment.user.login)
20+
) ||
21+
(
22+
github.event_name == 'pull_request_review_comment' &&
23+
contains(github.event.comment.body, '@claude') &&
24+
contains('minimalsm,pettinarip,wackerow,corwintines', github.event.comment.user.login)
25+
) ||
26+
(
27+
github.event_name == 'pull_request_review' &&
28+
contains(github.event.review.body, '@claude') &&
29+
contains('minimalsm,pettinarip,wackerow,corwintines', github.event.review.user.login)
30+
) ||
31+
(
32+
github.event_name == 'issues' &&
33+
contains(github.event.issue.body, '@claude') &&
34+
contains('minimalsm,pettinarip,wackerow,corwintines', github.event.issue.user.login)
35+
)
36+
runs-on: ubuntu-latest
37+
permissions:
38+
contents: read
39+
pull-requests: read
40+
issues: read
41+
id-token: write
42+
steps:
43+
- name: Checkout repository
44+
uses: actions/checkout@v4
45+
with:
46+
fetch-depth: 1
47+
48+
- name: Run Claude PR Action
49+
uses: anthropics/claude-code-action@beta
50+
with:
51+
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
52+
timeout_minutes: "60"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1994,6 +1994,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
19941994
</tr>
19951995
<tr>
19961996
<td align="center" valign="top" width="14.28%"><a href="https://github.com/kichong"><img src="https://avatars.githubusercontent.com/u/38249409?v=4?s=100" width="100px;" alt="kichong"/><br /><sub><b>kichong</b></sub></a><br /><a href="#content-kichong" title="Content">🖋</a></td>
1997+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zeevick10"><img src="https://avatars.githubusercontent.com/u/140458077?v=4?s=100" width="100px;" alt="FT"/><br /><sub><b>FT</b></sub></a><br /><a href="#content-zeevick10" title="Content">🖋</a></td>
19971998
</tr>
19981999
</tbody>
19992000
</table>

app/[locale]/enterprise/page.tsx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import Checkmark from "@/components/icons/checkmark.svg"
99
import Adidas from "@/components/icons/enterprise/adidas.svg"
1010
import Azure from "@/components/icons/enterprise/azure.svg"
1111
import BancoSantander from "@/components/icons/enterprise/banco-santander.svg"
12-
import BASF from "@/components/icons/enterprise/basf.svg"
1312
import BlackRock from "@/components/icons/enterprise/blackrock.svg"
1413
import BMW from "@/components/icons/enterprise/bmw.svg"
1514
import CocaCola from "@/components/icons/enterprise/coca-cola.svg"
@@ -183,8 +182,13 @@ const Page = async ({ params }: { params: { locale: Lang } }) => {
183182
),
184183
},
185184
{
186-
name: "T-Mobile & SK Telecom",
187-
content: t("page-enterprise-cases-tmobile-content"),
185+
name: "Sony",
186+
content: (
187+
<Translation
188+
ns="page-enterprise"
189+
id="page-enterprise-cases-sony-content"
190+
/>
191+
),
188192
},
189193
{
190194
name: "UN World Food Programme",
@@ -233,7 +237,6 @@ const Page = async ({ params }: { params: { locale: Lang } }) => {
233237
Logo: BancoSantander,
234238
className: "-translate-y-1",
235239
},
236-
{ name: "BASF", Logo: BASF, className: "text-[28px]" },
237240
{ name: "BlackRock", Logo: BlackRock, className: "text-[32px]" },
238241
{ name: "BMW", Logo: BMW, className: "scale-105 origin-bottom" },
239242
{ name: "Coca-Cola", Logo: CocaCola },

0 commit comments

Comments
 (0)