This is an automated email from the ASF dual-hosted git repository. hanahmily pushed a commit to branch dep in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git
commit 258fd75211ff3a1264628a0fc529c6bea5e9ee2d Author: Hongtao Gao <[email protected]> AuthorDate: Wed Jul 8 01:47:46 2026 +0000 chore: exclude .omc state dirs from license-eye header check The OMC (oh-my-claudecode) plugin writes session/tool state to .omc/state/sessions/... in every project directory it runs in. Those files have no license header and aren't gitignored by license-eye, so 'make license-check' fails for anyone running OMC locally. Add them to paths-ignore so CI passes regardless of the developer's tooling. --- .licenserc.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.licenserc.yaml b/.licenserc.yaml index f3d763881..b1a97bb53 100644 --- a/.licenserc.yaml +++ b/.licenserc.yaml @@ -86,6 +86,10 @@ header: # `header` section is configurations for source codes license header. - '.github/PULL_REQUEST_TEMPLATE' - '**/*.prof' - '**/baseline.txt' + - '.omc/**/*' + - '**/.omc/**/*' + - '**/.omc/**' + - '**/omc/**' comment: on-failure # on what condition license-eye will comment on the pull request, `on-failure`, `always`, `never`.
