Skip to content

Commit 1aaed5d

Browse files
authored
Update CHANGELOG.md linter (JabRef#10538)
* Update CHANGELOG.md linter * Bump heylogs * For now, 2 problems are OK
1 parent b1abe02 commit 1aaed5d

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/heylogs.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//DEPS com.github.nbbrd.heylogs:heylogs-cli:0.6.0
1+
//DEPS com.github.nbbrd.heylogs:heylogs-cli:0.7.1
22
public class heylogs {
33
public static void main(String... args) throws Exception {
44
nbbrd.heylogs.cli.HeylogsCommand.main(args);

.github/workflows/tests.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,9 @@ jobs:
142142
set -e
143143
curl -Ls https://sh.jbang.dev | bash -s - app setup
144144
source ~/.zshrc
145-
jbang .github/heylogs.java check CHANGELOG.md > heylogs.txt
146-
cat heylogs.txt
147-
# We have 7 "valid" issues in CHANGELOG.md
148-
grep -q "7 problems" heylogs.txt || exit 1
145+
jbang .github/heylogs.java check CHANGELOG.md | tee heylogs.txt
146+
# We have 2 "valid" issue in CHANGELOG.md
147+
grep -q "2 problems" heylogs.txt || exit 1
149148
tests:
150149
name: Unit tests
151150
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)