This is an automated email from the ASF dual-hosted git repository.
vlsi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git
The following commit(s) were added to refs/heads/master by this push:
new a2aca55acc ci: add Renovate config lint workflow
a2aca55acc is described below
commit a2aca55accbf48246c0232921630fae8b8cf3a08
Author: Vladimir Sitnikov <[email protected]>
AuthorDate: Tue May 26 12:50:22 2026 +0300
ci: add Renovate config lint workflow
Validate renovate.json on changes via renovate-config-validator
to catch typos and schema regressions before merge.
Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
---
.github/workflows/renovate-config-lint.yaml | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/.github/workflows/renovate-config-lint.yaml
b/.github/workflows/renovate-config-lint.yaml
new file mode 100644
index 0000000000..a4160ad2d3
--- /dev/null
+++ b/.github/workflows/renovate-config-lint.yaml
@@ -0,0 +1,27 @@
+name: Validate Renovate Config
+
+on:
+ push:
+ paths:
+ - renovate.json
+ - .github/workflows/renovate-config-lint.yaml
+ pull_request:
+ paths:
+ - renovate.json
+ - .github/workflows/renovate-config-lint.yaml
+
+# Declare default permissions as read-only.
+permissions: read-all
+
+jobs:
+ validate-renovate-config:
+ name: Validate renovate.json
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout sources
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
+ with:
+ persist-credentials: false
+
+ - name: Validate renovate.json
+ run: docker run --rm -v "$PWD":/work -w /work renovate/renovate:latest
renovate-config-validator renovate.json