From: Jörg Behrmann Date: Tue, 5 Aug 2025 21:28:05 +0000 (+0200) Subject: ci: give a hint about possible fixes for failing reuse lints X-Git-Tag: v26~161 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=32c3ff4677851085db8d42b140bf9b1cbfe270b6;p=thirdparty%2Fmkosi.git ci: give a hint about possible fixes for failing reuse lints --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5718c9ca..5044a7c24 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,11 @@ jobs: - name: License Checking (reuse) run: | reuse --version - reuse lint + if ! reuse lint + then + echo "Hint: If the above output lists unlicensed files tracked in git you might need to adjust REUSE.toml" + exit 1 + fi - name: Type Checking (mypy) run: |