Skip to content

Commit 406e957

Browse files
chore: fix lint
1 parent 3a1e06b commit 406e957

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,18 @@
66

77
### Added
88

9-
- Added PR comment minimization functionality to hide previous bot comments before creating new ones
9+
- Added PR comment minimization functionality to hide previous bot comments
10+
before creating new ones
1011
- Added comprehensive GraphQL support for PR comment management with pagination
11-
- Enhanced release script to automatically create GitHub releases with auto-generated notes
12-
- Added repository detection from git remote URL in release script
12+
- Enhanced release script to automatically create GitHub releases with
13+
auto-generated notes
14+
- Added repository detection from Git remote URL in release script
1315

1416
### Fixed
1517

16-
- Fixed lint errors by allowing 'any' types in test files
17-
- Added comprehensive test coverage for edge cases including pagination failures and API errors
18+
- Fixed linting errors by allowing 'any' types in test files
19+
- Added comprehensive test coverage for edge cases including pagination failures
20+
and API errors
1821
- Improved error handling in PR comment operations
1922

2023
## [3.0.1] - 2025-12-30

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ steps:
4747
4848
| Name | Description | Default |
4949
| ----------------- | ------------------------------------------------------------------------------------------------------------------------------ | -------------------------------- |
50-
| `reports` | Reports to annotate: `"format\|glob1, glob2, ..."` For example: `"junit-eslint\|junit/lint.xml"` | `["junit\|junit/*.xml"]` |
50+
| `reports` | Reports to annotate: `"format\|glob1, glob2, ..."` E.g.: `"junit-eslint\|junit/lint.xml"` | `["junit\|junit/*.xml"]` |
5151
| `ignore` | Ignore files from report search: `"[glob1, glob2...]"` | `['node_modules/**', 'dist/**']` |
5252
| `max-annotations` | Maximum number of annotations per type (error/warning/notice) | `10` |
5353
| `custom-matchers` | Custom matchers to use for parsing reports in JSON format: `{ "matcher-name": ReportMatcher }` See ./src/matchers for examples | |

script/release

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,15 +155,15 @@ else
155155
fi
156156

157157
# Check if gh CLI is available
158-
if ! command -v gh &> /dev/null; then
158+
if ! command -v gh &>/dev/null; then
159159
echo -e "${BOLD_RED}GitHub CLI (gh) is not installed. Please install it to create releases automatically.${OFF}"
160160
echo -e "You can manually create the release at: https://github.com/$github_repository/releases/new"
161161
echo -e "Tag: ${BOLD_BLUE}$new_tag${OFF}"
162162
exit 1
163163
fi
164164

165165
# Check if user is authenticated with GitHub CLI
166-
if ! gh auth status &> /dev/null; then
166+
if ! gh auth status &>/dev/null; then
167167
echo -e "${BOLD_RED}Not authenticated with GitHub CLI. Please run 'gh auth login' first.${OFF}"
168168
echo -e "You can manually create the release at: https://github.com/$github_repository/releases/new"
169169
echo -e "Tag: ${BOLD_BLUE}$new_tag${OFF}"

0 commit comments

Comments
 (0)