Skip to content

Commit

Permalink
Add renovate.json
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and NextFire committed Oct 29, 2023
1 parent b1347ce commit e798a18
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

on:
push:
branches: [main]
branches: ["main", "renovate/*"]
pull_request:
branches: [main]
branches: ["main"]
workflow_dispatch:

jobs:
Expand Down
26 changes: 26 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"packageRules": [
{
"matchUpdateTypes": ["patch", "digest"],
"automerge": true,
"automergeType": "branch"
},
{
"matchUpdateTypes": ["minor"],
"matchCurrentVersion": "!/^0/",
"automerge": true,
"automergeType": "branch"
}
],
"regexManagers": [
{
"fileMatch": [".*\\.ts$"],
"matchStrings": [
"import .*\"(?<depName>https:\\/\\/.*)@(?<currentValue>[^\\/]*)\\/.*\";"
],
"datasourceTemplate": "deno"
}
]
}

0 comments on commit e798a18

Please sign in to comment.