mirror of
https://github.com/auricom/home-cluster.git
synced 2025-10-02 08:47:17 +02:00
34 lines
1.1 KiB
YAML
34 lines
1.1 KiB
YAML
---
|
|
name: Schedule - Add Helm Release Renovate annotations
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 */12 * * *"
|
|
|
|
jobs:
|
|
renovate-helm-releases:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Renovate Helm Releases
|
|
uses: k8s-at-home/renovate-helm-releases@v1
|
|
with:
|
|
cluster-path: "./cluster"
|
|
- name: Create pull request for renovatebot helm-release 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 <27022259+auricom@users.noreply.github.com>"
|
|
author: "auricom <27022259+auricom@users.noreply.github.com>"
|
|
assignees: "auricom"
|
|
commit-message: "chore(deps): update renovate annotations"
|
|
body: |
|
|
Update Helm Releases in order for Renovate to pick up new versions of Helm charts
|
|
labels: renovate/annotations
|