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 c1cc7ab commit e14f520Copy full SHA for e14f520
.github/renovate.json
@@ -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
@@ -0,0 +1,23 @@
+name: Renovate
+
+on:
+ push:
+ 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