Skip to content

Commit 1bad98d

Browse files
authored
Merge branch 'dev' into docs/ecosystem-add-sortie
2 parents 464e133 + 2b3ddf9 commit 1bad98d

2,473 files changed

Lines changed: 371167 additions & 147185 deletions

File tree

Some content is hidden

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

.dockerignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.git
2+
.opencode
3+
.sst
4+
.turbo
5+
.wrangler
6+
node_modules
7+
**/node_modules
8+
**/.output
9+
**/dist
10+
**/.turbo
11+
**/.vite
12+
**/coverage

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: Bug report
22
description: Report an issue that should be fixed
3-
labels: ["bug"]
43
body:
54
- type: textarea
65
id: description

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: 🚀 Feature Request
22
description: Suggest an idea, feature, or enhancement
3-
labels: [discussion]
43
title: "[FEATURE]:"
54

65
body:

.github/ISSUE_TEMPLATE/question.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: Question
22
description: Ask a question
3-
labels: ["question"]
43
body:
54
- type: textarea
65
id: question

.github/TEAM_MEMBERS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ MrMushrooooom
1111
nexxeln
1212
R44VC0RP
1313
rekram1-node
14-
RhysSullivan
1514
thdxr
1615
simonklee
16+
vimtor
17+
starptech

.github/VOUCHED.td

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

.github/actions/setup-bun/action.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
fi
2424
2525
- name: Setup Bun
26-
uses: oven-sh/setup-bun@v2
26+
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
2727
with:
2828
bun-version-file: ${{ !steps.bun-url.outputs.url && 'package.json' || '' }}
2929
bun-download-url: ${{ steps.bun-url.outputs.url }}
@@ -33,8 +33,9 @@ runs:
3333
shell: bash
3434
run: echo "dir=$(bun pm cache)" >> "$GITHUB_OUTPUT"
3535

36-
- name: Cache Bun dependencies
37-
uses: actions/cache@v4
36+
- name: Restore Bun dependencies
37+
id: bun-cache
38+
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
3839
with:
3940
path: ${{ steps.cache.outputs.dir }}
4041
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
@@ -56,3 +57,10 @@ runs:
5657
bun install ${{ inputs.install-flags }}
5758
fi
5859
shell: bash
60+
61+
- name: Save Bun dependencies
62+
if: steps.bun-cache.outputs.cache-hit != 'true' && github.event_name != 'pull_request' && github.event_name != 'pull_request_target'
63+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
64+
with:
65+
path: ${{ steps.cache.outputs.dir }}
66+
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}

.github/actions/setup-git-committer/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runs:
1919
steps:
2020
- name: Create app token
2121
id: apptoken
22-
uses: actions/create-github-app-token@v2
22+
uses: actions/create-github-app-token@fee1f7d63c2ff003460e3d139729b119787bc349 # v2.2.2
2323
with:
2424
app-id: ${{ inputs.opencode-app-id }}
2525
private-key: ${{ inputs.opencode-app-secret }}

.github/workflows/beta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
pull-requests: write
1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
1717
with:
1818
fetch-depth: 0
1919

.github/workflows/close-issues.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
contents: read
1313
issues: write
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
1616

17-
- uses: oven-sh/setup-bun@v2
17+
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
1818
with:
1919
bun-version: latest
2020

0 commit comments

Comments
 (0)