Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/codeq-gcs-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
description: "Version tag (e.g., v1.0.0). Leave empty to use current timestamp."
required: false
type: string
ref:
description: "Git ref to build from (branch, tag, or SHA). Defaults to the branch the workflow is run from."
required: false
type: string

jobs:
build:
Expand Down Expand Up @@ -40,6 +44,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref || github.ref }}

- name: Setup Bun
uses: oven-sh/setup-bun@v2
Expand Down
8 changes: 8 additions & 0 deletions branding/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "branding",
"private": true,
"type": "module",
"dependencies": {
"zod": "catalog:"
}
}
8 changes: 8 additions & 0 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"packages/*",
"packages/console/*",
"packages/sdk/js",
"packages/slack"
"packages/slack",
"branding"
],
"catalog": {
"@types/bun": "1.3.5",
Expand Down