Skip to content

Commit 4a5ece9

Browse files
committed
fix(action): correct output formatting and select/ignore
Signed-off-by: Henry Schreiner <[email protected]>
1 parent 9029aaf commit 4a5ece9

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

action.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,29 @@
11
name: sp-repo-review
22
description: "Runs sp-repo-review"
3+
branding:
4+
icon: package
5+
color: blue
36
inputs:
47
package-dir:
58
description: "Path to Python package, if different from repo root"
69
required: false
710
default: ""
11+
select:
12+
description: "Checks to select, overrides pyproject.toml"
13+
required: false
14+
default: ""
15+
ignore:
16+
description: "Checks to ignore, overrides pyproject.toml"
17+
required: false
18+
default: ""
819

920
runs:
1021
using: composite
1122
steps:
1223
- uses: actions/setup-python@v6
1324
id: python
1425
with:
15-
python-version: "3.12"
26+
python-version: "3.13"
1627
update-environment: false
1728

1829
# prettier-ignore
@@ -23,7 +34,8 @@ runs:
2334
--python '${{ steps.python.outputs.python-path }}'
2435
--spec '${{ github.action_path }}[cli]'
2536
repo-review .
26-
--stderr html
37+
--format html
38+
--stderr rich
2739
--select "${{ inputs.select }}"
2840
--ignore "${{ inputs.ignore }}"
2941
--package-dir "${{ inputs.package-dir }}"

0 commit comments

Comments
 (0)