Skip to content

Commit

Permalink
ci: Enable renovate pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AzHicham committed Dec 10, 2023
1 parent eb5c8f4 commit 002b51c
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,7 @@ repos:
- id: clang-format
args: [-i]
files: \.(c|cc|cxx|cpp|h|hpp|hxx)$
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 37.45.0
hooks:
- id: renovate-config-validator
51 changes: 50 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,54 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
]
],
"labels": ["dependencies"],
"pre-commit": {
"enabled": true
},
"packageRules": [
{
"matchUpdateTypes": ["major"],
"addLabels": ["major"]
},
{
"matchUpdateTypes": ["minor"],
"addLabels": ["minor"]
},
{
"matchUpdateTypes": ["patch"],
"addLabels": ["patch"]
},
{
"matchManagers": ["cargo"],
"addLabels": ["rust"]
},
{
"matchManagers": ["pre-commit"],
"addLabels": ["pre-commit"]
},
{
"matchManagers": ["github-actions"],
"addLabels": ["github_actions"]
},
{
"matchManagers": ["cargo"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "cargo"
},
{
"matchManagers": ["pre-commit"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "pre-commit"
},
{
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "github-actions"
}
],
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security"]
}
}

1 comment on commit 002b51c

@github-actions
Copy link

Choose a reason for hiding this comment

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

philips-isyntax-rs Benchmark

Benchmark suite Current: 002b51c Previous: 46293bc Ratio
philips_i2syntax_read_region_256_lvl_0 1346465 ns/iter (± 244375) 1349258 ns/iter (± 102792) 1.00
philips_i2syntax_read_region_256_lvl_1 1133926 ns/iter (± 59568) 1152737 ns/iter (± 47453) 0.98
philips_i2syntax_read_region_512_lvl_0 1524034 ns/iter (± 120713) 1572663 ns/iter (± 86802) 0.97
philips_i2syntax_read_region_512_lvl_1 7240824 ns/iter (± 360299) 7506473 ns/iter (± 395762) 0.96
philips_read_region_256_lvl_0 489885 ns/iter (± 29709) 524461 ns/iter (± 171131) 0.93
philips_read_region_256_lvl_1 1222853 ns/iter (± 47551) 1290172 ns/iter (± 68119) 0.95
philips_read_region_512_lvl_0 3482738 ns/iter (± 150463) 3727517 ns/iter (± 203639) 0.93
philips_read_region_512_lvl_1 2705405 ns/iter (± 84378) 3196576 ns/iter (± 195241) 0.85

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.