Skip to content

Commit 8c10050

Browse files
committed
Merge remote-tracking branch 'origin/main' into future-activity-component-type
2 parents 9755c8a + 6276b49 commit 8c10050

File tree

213 files changed

+5913
-820
lines changed

Some content is hidden

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

213 files changed

+5913
-820
lines changed

.changeset/petite-facts-grin.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

.coderabbit.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
2+
language: "en-US"
3+
early_access: false
4+
reviews:
5+
profile: "chill"
6+
request_changes_workflow: false
7+
high_level_summary: true
8+
high_level_summary_in_walkthrough: true
9+
collapse_walkthrough: true
10+
poem: false
11+
review_status: true
12+
auto_review:
13+
enabled: true
14+
drafts: false
15+
chat:
16+
auto_reply: true

.github/workflows/integration.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ jobs:
101101
changeset:
102102
name: Check the status of Changesets
103103
runs-on: ubuntu-latest
104+
if: github.head_ref != 'changeset-release/main'
104105
steps:
105106
- uses: actions/checkout@v4
106107
with:

.github/workflows/opencode.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: OpenCode
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
7+
jobs:
8+
opencode:
9+
if: |
10+
contains(github.event.comment.body, ' /oc') ||
11+
startsWith(github.event.comment.body, '/oc') ||
12+
contains(github.event.comment.body, ' /opencode') ||
13+
startsWith(github.event.comment.body, '/opencode')
14+
runs-on: ubuntu-latest
15+
environment: Maintainer Only
16+
permissions:
17+
id-token: write
18+
contents: write
19+
pull-requests: write
20+
issues: write
21+
steps:
22+
- name: Checkout repository
23+
uses: actions/checkout@v4
24+
with:
25+
fetch-depth: 0
26+
27+
- name: Run opencode
28+
uses: sst/opencode/github@latest
29+
env:
30+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
31+
with:
32+
model: openai/gpt-5-2025-08-07

.github/workflows/release.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,18 @@ jobs:
1212
release:
1313
name: Create PR or release packages
1414
runs-on: ubuntu-latest
15+
permissions:
16+
id-token: write
17+
contents: write
18+
pull-requests: write
1519
steps:
1620
- uses: actions/checkout@v4
1721
with:
1822
fetch-depth: 0
1923

2024
- uses: actions/setup-node@v4
2125
with:
22-
node-version: "22"
26+
node-version: 24.x
2327
registry-url: https://registry.npmjs.org
2428

2529
- uses: actions/cache@v4
@@ -69,9 +73,9 @@ jobs:
6973
publish: yarn changeset publish
7074
version: yarn changeset:version
7175
env:
72-
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
73-
GITHUB_TOKEN: ${{ github.token }}
76+
GITHUB_TOKEN: ${{ secrets.DAANGNBOT_PAT }}
77+
NPM_CONFIG_PROVENANCE: true
7478

7579
- name: Continuous release via pkg.pr.new
7680
if: github.event_name == 'pull_request'
77-
run: ./scripts/publish-preview-packages.sh ${{ github.event.pull_request.base.ref }}
81+
run: ./scripts/publish-preview-packages.sh ${{ github.event.pull_request.base.ref }}

0 commit comments

Comments
 (0)