We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4734a1 commit 8ecde2dCopy full SHA for 8ecde2d
2 files changed
.github/workflows/renovate.yml
@@ -0,0 +1,20 @@
1
+name: Renovate
2
+on:
3
+ schedule:
4
+ - cron: "0 * * * *"
5
+ workflow_dispatch:
6
+jobs:
7
+ renovate:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout
11
+ uses: actions/checkout@v6
12
+ with:
13
+ fetch-depth: 0
14
+ - name: Run Renovate
15
+ uses: renovatebot/github-action@v46.1.10
16
17
+ token: ${{ secrets.HOMEBREW_GITHUB_TOKEN }}
18
+ configurationFile: renovate.json
19
+ env:
20
+ RENOVATE_REPOSITORIES: floatpane/matcha
renovate.json
@@ -4,9 +4,14 @@
"postUpdateOptions": ["gomodTidy"],
"packageRules": [
{
+ "matchManagers": ["gomod"],
"matchDepNames": ["go"],
- "groupName": "go",
"rangeStrategy": "bump"
+ },
+ {
+ "matchManagers": ["github-actions"],
+ "matchDepNames": ["go"],
+ "groupName": "go"
}
]
0 commit comments