Skip to content

Commit f312f1a

Browse files
committed
add renovate workflow
1 parent 4211305 commit f312f1a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/renovate.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Renovate
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 * * *"
6+
workflow_dispatch:
7+
8+
jobs:
9+
renovate:
10+
name: Renovate
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
- name: Self-hosted Renovate
16+
uses: renovatebot/github-action@v40.3.5
17+
env:
18+
RENOVATE_REPOSITORIES: '["stackitcloud/stackit-sdk-python"]'
19+
RENOVATE_ENABLED_MANAGERS: '["poetry", "github-actions"]'
20+
with:
21+
token: ${{ secrets.RENOVATE_TOKEN }}

0 commit comments

Comments
 (0)