Schedule - Update Kah Library Helm chart #7172
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Schedule - Update Kah Library Helm chart | |
on: # yamllint disable-line rule:truthy | |
workflow_dispatch: | |
schedule: | |
- cron: "0 */4 * * *" | |
jobs: | |
update-helm-deps: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: azure/setup-helm@v3 | |
with: | |
version: v3.6.3 | |
- run: helm repo add k8s-at-home-library https://library-charts.k8s-at-home.com | |
- run: helm repo update | |
- run: helm dep update | |
working-directory: charts/kah-common | |
- uses: peter-evans/create-pull-request@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: renovate-kah-library-chart | |
delete-branch: true | |
title: "chore(deps): update kah library chart" | |
signoff: true | |
committer: "Danny Froberg <[email protected]>" | |
author: "Danny Froberg <[email protected]>" | |
assignees: "dfroberg" | |
commit-message: "chore(deps): update kah library chart" | |
body: | | |
Update the kah library chart | |
labels: renovate/kah-library-chart |