Skip to content

Commit

Permalink
added missed yml parameter descriptions, script that check descriptio…
Browse files Browse the repository at this point in the history
…n exists for all parameters, added github action that run script
  • Loading branch information
dashevchenko committed Oct 5, 2023
1 parent d713ee6 commit 261bec2
Show file tree
Hide file tree
Showing 4 changed files with 608 additions and 163 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/check_yml_parameter_descriptions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Check yml parameters have description
on:
pull_request:
paths:
- 'application/src/main/resources/thingsboard.yml'
jobs:
build:
name: check
runs-on: ubuntu-20.04

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10.2"
architecture: "x64"
env:
AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache

- name: Run Verification Script
run: python3 tools/src/main/python/check_env_variables.py
Loading

0 comments on commit 261bec2

Please sign in to comment.