mirror of
https://github.com/auricom/home-cluster.git
synced 2025-12-30 10:17:53 +01:00
37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
name: renovate-annotations
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "15 * * * *"
|
|
|
|
jobs:
|
|
renovate-helmrelease:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
fetch-depth: 1
|
|
|
|
- name: Renovate Helm Releases
|
|
uses: k8s-at-home/renovate-helm-releases@v1
|
|
with:
|
|
cluster-path: "./cluster"
|
|
|
|
- name: Create pull request for HelmRelease annotations
|
|
uses: peter-evans/create-pull-request@v3
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
branch: renovate-annotations
|
|
delete-branch: true
|
|
title: "chore(deps): update renovate annotations"
|
|
signoff: true
|
|
committer: "Auricom <auricom@users.noreply.github.com>"
|
|
author: "Auricom <auricom@users.noreply.github.com>"
|
|
assignees: "auricom"
|
|
commit-message: "chore(deps): update renovate annotations"
|
|
body: |
|
|
Update HelmReleases inorder for Renovate to pick up new versions of Helm charts
|
|
labels: renovate/annotations
|