Skip to content

Commit

Permalink
chore(config): migrate config renovate.json (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 7, 2024
1 parent 6703c7a commit 0354718
Showing 1 changed file with 65 additions and 22 deletions.
87 changes: 65 additions & 22 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,59 +1,102 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
"config:recommended"
],
"timezone": "Europe/Paris",
"schedule": [
"after 8am and before 9am every monday"
"after 8am and before 9am on monday"
],
"labels": [
"dependencies"
],
"labels": ["dependencies"],
"pre-commit": {
"enabled": true
},
"packageRules": [
{
"matchUpdateTypes": ["major"],
"addLabels": ["major"]
"matchUpdateTypes": [
"major"
],
"addLabels": [
"major"
]
},
{
"matchUpdateTypes": ["minor"],
"addLabels": ["minor"]
"matchUpdateTypes": [
"minor"
],
"addLabels": [
"minor"
]
},
{
"matchUpdateTypes": ["patch"],
"addLabels": ["patch"]
"matchUpdateTypes": [
"patch"
],
"addLabels": [
"patch"
]
},
{
"matchManagers": ["cargo"],
"addLabels": ["rust"]
"matchManagers": [
"cargo"
],
"addLabels": [
"rust"
]
},
{
"matchManagers": ["pre-commit"],
"addLabels": ["pre-commit"]
"matchManagers": [
"pre-commit"
],
"addLabels": [
"pre-commit"
]
},
{
"matchManagers": ["github-actions"],
"addLabels": ["github_actions"]
"matchManagers": [
"github-actions"
],
"addLabels": [
"github_actions"
]
},
{
"matchManagers": ["cargo"],
"matchUpdateTypes": ["minor", "patch"],
"matchManagers": [
"cargo"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "cargo"
},
{
"matchManagers": ["pre-commit"],
"matchUpdateTypes": ["minor", "patch"],
"matchManagers": [
"pre-commit"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "pre-commit"
},
{
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"],
"matchManagers": [
"github-actions"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "github-actions"
}
],
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security"]
"labels": [
"security"
]
}
}

2 comments on commit 0354718

@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: 0354718 Previous: 6703c7a Ratio
philips_i2syntax_read_region_256_lvl_0 1388079 ns/iter (± 83177) 1365835 ns/iter (± 89832) 1.02
philips_i2syntax_read_region_256_lvl_1 1263750 ns/iter (± 48493) 1165759 ns/iter (± 52887) 1.08
philips_i2syntax_read_region_512_lvl_0 2012920 ns/iter (± 109877) 1573828 ns/iter (± 185830) 1.28
philips_i2syntax_read_region_512_lvl_1 7646666 ns/iter (± 209250) 7417155 ns/iter (± 320016) 1.03
philips_read_region_256_lvl_0 519732 ns/iter (± 46567) 515350 ns/iter (± 35665) 1.01
philips_read_region_256_lvl_1 1271724 ns/iter (± 51201) 1265846 ns/iter (± 67766) 1.00
philips_read_region_512_lvl_0 3629762 ns/iter (± 178626) 3576608 ns/iter (± 311921) 1.01
philips_read_region_512_lvl_1 3214363 ns/iter (± 364587) 2766784 ns/iter (± 195027) 1.16

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

@github-actions
Copy link

Choose a reason for hiding this comment

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

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'philips-isyntax-rs Benchmark'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.20.

Benchmark suite Current: 0354718 Previous: 6703c7a Ratio
philips_i2syntax_read_region_512_lvl_0 2012920 ns/iter (± 109877) 1573828 ns/iter (± 185830) 1.28

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

CC: @AzHicham

Please sign in to comment.