Skip to content

Commit

Permalink
Enable auto merge for minor and patch
Browse files Browse the repository at this point in the history
  • Loading branch information
ghokun committed Jul 22, 2024
1 parent 118adbe commit 319b899
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: lint
on: [pull_request, push]
on:
pull_request:
push:
branches:
- main

permissions:
contents: read
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: test
on: [pull_request, push]
on:
pull_request:
push:
branches:
- main

permissions:
contents: read
Expand Down
13 changes: 12 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"automergeStrategy": "squash",
"extends": [
"config:base"
],
"packageRules": [
{
"automerge": true,
"description": "Automerge non-major updates",
"matchUpdateTypes": [
"minor",
"patch"
]
}
]
}
}

0 comments on commit 319b899

Please sign in to comment.