Skip to content

Commit f23d93e

Browse files
Merge branch 'master' into gpu-optimizations
2 parents cd3c0fe + 97a6dac commit f23d93e

3 files changed

Lines changed: 12 additions & 10 deletions

File tree

.github/workflows/bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
self:
3030
name: "${{ matrix.name }} (${{ matrix.device }}${{ matrix.interface != 'none' && format('-{0}', matrix.interface) || '' }})"
31-
if: ${{ github.repository=='MFlowCode/MFC' && needs.file-changes.outputs.checkall=='true' && ((github.event_name=='pull_request_review' && github.event.review.state=='approved') || (github.event_name=='pull_request' && (github.event.pull_request.user.login=='sbryngelson' || github.event.pull_request.user.login=='wilfonba')) || github.event_name=='workflow_dispatch') }}
31+
if: ${{ github.repository=='MFlowCode/MFC' && needs.file-changes.outputs.checkall=='true' && github.event.pull_request.draft != true && ((github.event_name=='pull_request_review' && github.event.review.state=='approved') || (github.event_name=='pull_request' && (github.event.pull_request.user.login=='sbryngelson' || github.event.pull_request.user.login=='wilfonba')) || github.event_name=='workflow_dispatch') }}
3232
needs: file-changes
3333
strategy:
3434
fail-fast: false

.github/workflows/claude-code-review.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,12 @@ jobs:
1919
uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 1
22-
22+
23+
- name: Ensure ~/.local/bin exists and is on PATH
24+
run: |
25+
mkdir -p "$HOME/.local/bin"
26+
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
27+
2328
- name: Run Claude Code Review
2429
uses: anthropics/claude-code-action@v1
2530
with:
@@ -29,19 +34,16 @@ jobs:
2934
plugin_marketplaces: "https://github.com/anthropics/claude-code.git"
3035
plugins: "code-review@claude-code-plugins"
3136

37+
show_full_output: true
38+
3239
claude_args: >
3340
--dangerously-skip-permissions
3441
--max-turns 60
3542
--allowedTools
36-
"Bash(gh pr view:*)"
37-
"Bash(gh pr diff:*)"
38-
"Bash(gh pr comment:*)"
39-
"Bash(gh api:*)"
40-
"Bash(cat CLAUDE.md:*)"
41-
"Bash(cat .claude/rules/*:*)"
43+
"Bash(gh:*)"
44+
"Bash(cat:*)"
4245
"Bash(ls:*)"
4346
"Bash(grep:*)"
44-
"Bash(find:*)"
4547
"Bash(sed:*)"
4648
"Bash(awk:*)"
4749
"Bash(head:*)"

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151

152152
self:
153153
name: "${{ matrix.cluster_name }} (${{ matrix.device }}${{ matrix.interface != 'none' && format('-{0}', matrix.interface) || '' }})"
154-
if: github.repository == 'MFlowCode/MFC' && needs.file-changes.outputs.checkall == 'true'
154+
if: github.repository == 'MFlowCode/MFC' && needs.file-changes.outputs.checkall == 'true' && github.event.pull_request.draft != true
155155
needs: [lint-gate, file-changes]
156156
continue-on-error: false
157157
timeout-minutes: 480

0 commit comments

Comments
 (0)