File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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:*)"
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments