mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 22:02:56 +00:00
* feat: add license checker workflow Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix existing header Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * specify license for internal sub-crate Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix rustfmt Signed-off-by: Ruihang Xia <waynestxia@gmail.com> Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
17 lines
351 B
YAML
17 lines
351 B
YAML
name: License checker
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- develop
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
jobs:
|
|
license-header-check:
|
|
runs-on: ubuntu-latest
|
|
name: license-header-check
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Check License Header
|
|
uses: apache/skywalking-eyes/header@main
|