Skip to content

Commit

Permalink
Add renovate (#24)
Browse files Browse the repository at this point in the history
Co-authored-by: Henrique Santos <[email protected]>
  • Loading branch information
hcsa73 and Henrique Santos authored Sep 21, 2023
1 parent 4e8514d commit d025012
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"prHourlyLimit": 10,
"labels": [
"renovate"
],
"repositories": [
"stackitcloud/terraform-provider-stackit"
],
"enabledManagers": [
"gomod",
"github-actions"
],
"postUpgradeOptions": [
"gomodTidy"
]
}
19 changes: 19 additions & 0 deletions .github/workflows/renovate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Renovate

on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:

jobs:
renovate:
name: Renovate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Self-hosted Renovate
uses: renovatebot/[email protected]
with:
configurationFile: .github/renovate.json
token: ${{ secrets.RENOVATE_TOKEN }}

0 comments on commit d025012

Please sign in to comment.