1、修复改设备数据导致设备在线状态被覆盖的问题; #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) Abstract Machines | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Check License Header | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check-license: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Check License Header | |
run: | | |
CHECK=$(grep -rcL --exclude-dir={.git,build,**vernemq**} \ | |
--exclude=\*.{crt,key,pem,zed,hcl,md,json,csv,mod,sum,tmpl,args} \ | |
--exclude={CODEOWNERS,LICENSE,MAINTAINERS} \ | |
--regexp "Copyright (c) Abstract Machines" .) | |
if [ "$CHECK" ]; then | |
echo "License header check failed. Fix the following files:" | |
echo "$CHECK" | |
exit 1 | |
fi |