Skip to content

Commit 0430e57

Browse files
committed
chore: restore format test for normal actions
Signed-off-by: Brian Harring <ferringb@gmail.com>
1 parent 88d2cd0 commit 0430e57

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
uses: ./.github/workflows/test.yml
7171
with:
7272
release-artifact-id: ${{ needs.build.outputs.release-artifact-id }}
73-
format-check: false
73+
disable-format-check: true
7474

7575
publish:
7676
if: github.ref_type == 'tag'

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ on:
1212
type: string
1313
default: ''
1414
description: The artifact-id to run the tests against.
15-
format-check:
15+
disable-format-check:
1616
type: boolean
17-
default: true
17+
default: false
1818
description: Run the ruff format check. This should only be disabled for releases.
1919
jobs:
2020
build:
@@ -139,7 +139,7 @@ jobs:
139139

140140
format:
141141
runs-on: ubuntu-latest
142-
if: inputs.format-check
142+
if: ! inputs.disable-format-check
143143
steps:
144144
- name: Checkout pkgcore
145145
uses: actions/checkout@v5

0 commit comments

Comments
 (0)