Skip to content

Commit 779f539

Browse files
authored
Merge branch 'main' into sno-api-changelog
2 parents 95c815f + 47688fe commit 779f539

File tree

235 files changed

+28467
-24634
lines changed

Some content is hidden

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

235 files changed

+28467
-24634
lines changed

.env_example

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ TEST_COMFYUI_DIR=/home/ComfyUI
2323
# Whether to enable minification of the frontend code.
2424
ENABLE_MINIFY=true
2525

26-
# Whether to disable proxying the `/templates` route. If true, allows you to
27-
# serve templates from the ComfyUI_frontend/public/templates folder (for
28-
# locally testing changes to templates). When false or nonexistent, the
29-
# templates are served via the normal method from the server's python site
26+
# Whether to disable proxying the `/templates` route. If true, allows you to
27+
# serve templates from the ComfyUI_frontend/public/templates folder (for
28+
# locally testing changes to templates). When false or nonexistent, the
29+
# templates are served via the normal method from the server's python site
3030
# packages.
3131
DISABLE_TEMPLATES_PROXY=false
3232

@@ -37,3 +37,8 @@ DISABLE_VUE_PLUGINS=false
3737
# Algolia credentials required for developing with the new custom node manager.
3838
ALGOLIA_APP_ID=4E0RO38HS8
3939
ALGOLIA_API_KEY=684d998c36b67a9a9fce8fc2d8860579
40+
41+
# Sentry ENV vars replace with real ones for debugging
42+
# SENTRY_AUTH_TOKEN=private-token # get from sentry
43+
# SENTRY_ORG=comfy-org
44+
# SENTRY_PROJECT=cloud-frontend-staging

.git-blame-ignore-revs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,6 @@ e3bb29ceb8174b8bbca9e48ec7d42cd540f40efa
2525

2626
# [refactor] Improve updates/notifications domain organization (#5590)
2727
27ab355f9c73415dc39f4d3f512b02308f847801
28+
29+
# Migrate Tailwind styles to design-system package
30+
9f19d8fb4bd22518879343b49c05634dca777df0

.github/workflows/pr-claude-review.yaml

Lines changed: 1 addition & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -17,40 +17,9 @@ concurrency:
1717
cancel-in-progress: true
1818

1919
jobs:
20-
wait-for-ci:
21-
runs-on: ubuntu-latest
22-
if: github.event.label.name == 'claude-review'
23-
outputs:
24-
should-proceed: ${{ steps.check-status.outputs.proceed }}
25-
steps:
26-
- name: Wait for other CI checks
27-
uses: lewagon/wait-on-check-action@e106e5c43e8ca1edea6383a39a01c5ca495fd812
28-
with:
29-
ref: ${{ github.event.pull_request.head.sha }}
30-
check-regexp: '^(lint-and-format|test|playwright-tests)'
31-
allowed-conclusions: success,skipped,failure,cancelled,neutral,action_required,timed_out,stale
32-
wait-interval: 30
33-
repo-token: ${{ secrets.GITHUB_TOKEN }}
34-
35-
- name: Check if we should proceed
36-
id: check-status
37-
run: |
38-
CHECK_RUNS=$(gh api repos/${{ github.repository }}/commits/${{ github.event.pull_request.head.sha }}/check-runs --jq '.check_runs[] | select(.name | test("lint-and-format")) | {name, conclusion}')
39-
40-
if echo "$CHECK_RUNS" | grep -Eq '"conclusion": "(failure|cancelled|timed_out|action_required)"'; then
41-
echo "Some CI checks failed - skipping Claude review"
42-
echo "proceed=false" >> $GITHUB_OUTPUT
43-
else
44-
echo "All CI checks passed - proceeding with Claude review"
45-
echo "proceed=true" >> $GITHUB_OUTPUT
46-
fi
47-
env:
48-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49-
5020
claude-review:
51-
needs: wait-for-ci
52-
if: needs.wait-for-ci.outputs.should-proceed == 'true'
5321
runs-on: ubuntu-latest
22+
if: github.event.label.name == 'claude-review'
5423
timeout-minutes: 30
5524
steps:
5625
- name: Checkout repository

.github/workflows/weekly-docs-check.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,3 @@ jobs:
142142
documentation
143143
automated
144144
draft: true
145-
assignees: ${{ github.repository_owner }}

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ yarn.lock
1818
.stylelintcache
1919

2020
node_modules
21+
.pnpm-store
2122
dist
2223
dist-ssr
2324
*.local
@@ -92,3 +93,6 @@ storybook-static
9293
.github/instructions/nx.instructions.md
9394
vite.config.*.timestamp*
9495
vitest.config.*.timestamp*
96+
97+
# Weekly docs check output
98+
/output.txt
1002 Bytes
Loading
1.04 KB
Loading
894 Bytes
Loading
827 Bytes
Loading
3.52 KB
Loading

0 commit comments

Comments
 (0)