Skip to content

Commit 6cc764a

Browse files
committed
check_repo: ignore unpublished local changes
Signed-off-by: Peng Tao <bergwolf@hyper.sh>
1 parent 18ee0da commit 6cc764a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ async function run(): Promise<void> {
6161
package_errors = package_errors.filter(
6262
({kind}) => kind !== 'unable-to-get-commit-date'
6363
)
64+
package_errors = package_errors.filter(
65+
({kind}) => kind !== 'has-unpublished-changes'
66+
)
6467
}
6568

6669
if (package_errors.length > 0) {

0 commit comments

Comments
 (0)