Skip to content

Commit 0a0ff03

Browse files
committed
fix(ci): add additional input to accurately describe intent on skip
1 parent b514f85 commit 0a0ff03

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/publish.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ on:
3333
default: false
3434
type: boolean
3535
required: false
36+
skip_code_quality:
37+
description: "Skip tests, linting, and baseline. Only use if release fail for reasons beyond our control and you need a quick release."
38+
default: false
39+
type: boolean
40+
required: false
3641

3742
jobs:
3843
release:
@@ -66,7 +71,7 @@ jobs:
6671
- name: Install dependencies
6772
run: make dev
6873
- name: Run all tests, linting and baselines
69-
if: ${{ !inputs.skip_pypi }}
74+
if: ${{ !inputs.skip_code_quality }}
7075
run: make pr
7176
- name: Bump package version
7277
run: poetry version ${RELEASE_VERSION}

0 commit comments

Comments
 (0)