Skip to content
Compare
Choose a tag to compare
@tisonkun tisonkun released this 06 Jan 04:53
· 124 commits to main since this release
435643c

HawkEye 1.0.2

Simple license header checker and formatter, in multiple distribution forms.

Try it out!

Native Image

docker run --rm -v $(pwd):/github/workspace ghcr.io/korandoru/hawkeye-native:v1.0.2 check -h

Executable JAR

This executable requires JRE 17+ existence.

export HAWKEYE_VERSION=1.0.2
wget https://repo1.maven.org/maven2/io/korandoru/hawkeye/commandline/$HAWKEYE_VERSION/commandline-$HAWKEYE_VERSION-bin.tar.gz
tar -xvzf commandline-$HAWKEYE_VERSION-bin.tar.gz
hawkeye-$HAWKEYE_VERSION/hawkeye check -h

JRE Image

docker run --rm -v $(pwd):/github/workspace ghcr.io/korandoru/hawkeye:v1.0.2 check -h

GitHub Actions

# prerequisite: add a `licenserc.toml` file in the root of your project
- name: Check License Header
  uses: korandoru/hawkeye@v1

What's Changed

  • fix: follow links on walkFileTree b294230
  • fix: complete results future of selectedFiles a8e29b7

Full Changelog: v1.0.1...v1.0.2