Skip to content

Commit e14f520

Browse files
committed
chore: renovate
1 parent c1cc7ab commit e14f520

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.github/renovate.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": ["github>ctison/config//renovate/renovate"],
4+
"repositories": ["ctison/graphql-codegen-golang"]
5+
}

.github/workflows/renovate.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Renovate
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
schedule:
8+
- cron: '0 6 * * *'
9+
workflow_dispatch:
10+
11+
concurrency:
12+
group: renovate-${{ github.ref }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
renovate:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v3
20+
- uses: renovatebot/github-action@v32.6.5
21+
with:
22+
configurationFile: .github/renovate.json
23+
token: ${{ secrets.RENOVATE_TOKEN }}

0 commit comments

Comments
 (0)