Skip to content

Commit 6ef0521

Browse files
committed
fix
1 parent 3ca9084 commit 6ef0521

3 files changed

Lines changed: 15 additions & 1 deletion

File tree

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ on:
44
push:
55
branches: [main]
66
workflow_dispatch:
7+
inputs:
8+
debug_enabled:
9+
type: boolean
10+
description: "Run with tmate debugging enabled"
11+
required: false
12+
default: false
713

814
concurrency:
915
group: ${{ github.workflow }}-${{ github.ref }}
@@ -14,3 +20,4 @@ jobs:
1420
uses: Komorebi-AI/github-actions/.github/workflows/pre-commit-uv.yml@main
1521
with:
1622
uv-version: 0.8.0
23+
debug-enabled: ${{ inputs.debug_enabled }}

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ name: pre-commit-pr
33
on:
44
pull_request:
55
workflow_dispatch:
6+
inputs:
7+
debug_enabled:
8+
type: boolean
9+
description: "Run with tmate debugging enabled"
10+
required: false
11+
default: false
612

713
concurrency:
814
group: ${{ github.workflow }}-${{ github.ref }}
@@ -14,3 +20,4 @@ jobs:
1420
with:
1521
uv-version: 0.8.0
1622
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 }}

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
inputs:
1010
debug_enabled:
1111
type: boolean
12-
description: "Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)"
12+
description: "Run with tmate debugging enabled"
1313
required: false
1414
default: false
1515

0 commit comments

Comments
 (0)