Skip to content

Commit ddee471

Browse files
authoredNov 7, 2024
Fix license header (apache#12008)
* chore: fix license header and add checker Signed-off-by: Ruihang Xia <[email protected]> * add CI checker Signed-off-by: Ruihang Xia <[email protected]> * ignore generated files Signed-off-by: Ruihang Xia <[email protected]> * replace RAT with hawkeye Signed-off-by: Ruihang Xia <[email protected]> * fix new header errors Signed-off-by: Ruihang Xia <[email protected]> --------- Signed-off-by: Ruihang Xia <[email protected]>
1 parent 1094651 commit ddee471

File tree

41 files changed

+199
-186
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+199
-186
lines changed
 

‎.github/workflows/dev.yml

+4-10
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,12 @@ concurrency:
2323
cancel-in-progress: true
2424

2525
jobs:
26-
rat:
27-
name: Release Audit Tool (RAT)
26+
license-header-check:
2827
runs-on: ubuntu-latest
28+
name: Check License Header
2929
steps:
30-
- name: Checkout
31-
uses: actions/checkout@v4
32-
- name: Setup Python
33-
uses: actions/setup-python@v5
34-
with:
35-
python-version: "3.10"
36-
- name: Audit licenses
37-
run: ./dev/release/run-rat.sh .
30+
- uses: actions/checkout@v4
31+
- uses: korandoru/hawkeye@v5
3832

3933
prettier:
4034
name: Use prettier to check formatting of documents

‎.github/workflows/rust.yml

+8
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@ on:
3939
workflow_dispatch:
4040

4141
jobs:
42+
# Check license header
43+
license-header-check:
44+
runs-on: ubuntu-20.04
45+
name: Check License Header
46+
steps:
47+
- uses: actions/checkout@v4
48+
- uses: korandoru/hawkeye@v5
49+
4250
# Check crate compiles
4351
linux-build-lib:
4452
name: cargo check

0 commit comments

Comments
 (0)