Skip to content

Commit ac92d96

Browse files
committed
fix
1 parent 6ef0521 commit ac92d96

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/pre-commit-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
uses: Komorebi-AI/github-actions/.github/workflows/pre-commit-uv.yml@main
2121
with:
2222
uv-version: 0.8.0
23-
debug-enabled: ${{ inputs.debug_enabled }}
23+
debug-enabled: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}

.github/workflows/pre-commit-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
with:
2121
uv-version: 0.8.0
2222
pre-commit-args: --color=always --from-ref ${{ github.event.pull_request.base.sha }} --to-ref ${{ github.event.pull_request.head.sha }}
23-
debug-enabled: ${{ inputs.debug_enabled }}
23+
debug-enabled: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ jobs:
2222
uses: Komorebi-AI/github-actions/.github/workflows/pytest-uv.yml@main
2323
with:
2424
uv-version: 0.8.0
25-
debug-enabled: ${{ inputs.debug_enabled }}
25+
debug-enabled: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}

0 commit comments

Comments
 (0)