Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(renovate): Disable OpenTelementry SDK updates #3435

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/renovate_config_validation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Renovate Config validation
permissions:
contents: read
on:
workflow_dispatch:
pull_request:
types: [ opened, reopened, synchronize ]
branches:
- main
paths:
- .github/workflows/renovate_config_validation.yaml
- renovate.json

jobs:
renovate-config-validation:
runs-on: ubuntu-latest
name: Validate the Renovate configuration
steps:
- name: Validate the Renovate JSON
run: |
set -euxo pipefail
npx --yes --package renovate -- renovate-config-validator
Copy link
Contributor

@geigerj0 geigerj0 Dec 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Didn't know that renovate actually provides something that does a more enhanced validation than just checking if the JSON fits to the schema. Well played @silvestre 🤝 👍, love it :D, I definitely learned something here 🤓

https://docs.renovatebot.com/config-validation/

8 changes: 5 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,13 @@
]
},
{
"description": "Group OpenTelemetry updates together",
"description": "Disable OpenTelemetry-relevant updates",
"groupName": "opentelemetry",
"matchPackageNames": [
"/opentelemetry/"
]
"/opentelemetry/",
"/ogen-go/ogen/"
],
"enabled": false
},
{
"description": "Group Cloud Foundry Logging and Metrics updates together",
Expand Down
Loading