Skip to content

Commit

Permalink
add renovate
Browse files Browse the repository at this point in the history
  • Loading branch information
hwbrzzl committed Dec 31, 2024
1 parent 5eca2c0 commit dcf8a3a
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @goravel/core-developers
7 changes: 7 additions & 0 deletions .github/workflows/check-pr-title.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: PR Check Title
on:
pull_request:
jobs:
check:
uses: goravel/.github/.github/workflows/check_pr_title.yml@master
secrets: inherit
12 changes: 12 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Lint
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
jobs:
lint:
uses: goravel/.github/.github/workflows/lint.yml@master
secrets: inherit
25 changes: 25 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"labels": [
"🤖 Dependencies"
],
"commitMessagePrefix": "chore(deps): ",
"postUpdateOptions": [
"gomodTidy"
],
"packageRules": [
{
"description": "Automerge non-major updates",
"matchUpdateTypes": [
"minor",
"patch"
],
"matchCurrentVersion": "!/^0/",
"automerge": true
}
],
"ignoreDeps": []
}

0 comments on commit dcf8a3a

Please sign in to comment.