Now we have a more flexible get_maintainer script we can use it to validate MAINTAINERS.
Signed-off-by: Alex Bennée <[email protected]> --- .gitlab-ci.d/static_checks.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitlab-ci.d/static_checks.yml b/.gitlab-ci.d/static_checks.yml index 61fe2fa39ab..c74698ad948 100644 --- a/.gitlab-ci.d/static_checks.yml +++ b/.gitlab-ci.d/static_checks.yml @@ -23,6 +23,15 @@ check-dco: before_script: - apk -U add git +check-maintainers: + extends: .base_job_template + stage: build + image: python:3.10-alpine + needs: [] + script: scripts/get_maintainer.py --validate + variables: + GIT_DEPTH: 1 + check-python-minreqs: extends: .base_job_template stage: test -- 2.47.3
