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 a335cb6 commit bb26fc5Copy full SHA for bb26fc5
.github/workflows/renovate-scheduler.yaml
@@ -0,0 +1,23 @@
1
+name: Renovate-scheduler
2
+permissions:
3
+ contents: read
4
+ pull-requests: write
5
+on:
6
+ # schedule:
7
+ # - cron: '30 9 * * *' # every day at 3 PM IST (9:30 AM UTC)
8
+ workflow_dispatch: # allow manual runs
9
+
10
+jobs:
11
+ renovate:
12
+ runs-on: ubuntu-24.04
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - name: Renovate run
17
+ uses: renovatebot/github-action@v43.0.14
18
+ env:
19
+ LOG_LEVEL: debug
20
+ RENOVATE_REPOSITORIES: SumoLogic/sumologic-kubernetes-collection
21
+ with:
22
+ token: ${{ secrets.GITHUB_TOKEN }}
23
+ configurationFile: renovate.json
0 commit comments