mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
add update-helm script which makes it easier to test things
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
62a3740a53
commit
6641cb6382
1 changed files with 27 additions and 0 deletions
27
.github/workflows/update-helm.yml
vendored
Normal file
27
.github/workflows/update-helm.yml
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
name: Update Helm Chart
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
# schedule:
|
||||||
|
# - cron: '00 12 * * *'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
psalm:
|
||||||
|
name: update helm chart
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: update helm chart
|
||||||
|
run: |
|
||||||
|
sudo bash helm-chart/update-helm.sh
|
||||||
|
- name: Create Pull Request
|
||||||
|
uses: peter-evans/create-pull-request@v4
|
||||||
|
with:
|
||||||
|
commit-message: Helm Chart updates
|
||||||
|
signoff: true
|
||||||
|
title: Helm Chart updates
|
||||||
|
body: Automated Helm Chart updates for the yaml files. Should only be merged shortly before the next latest release.
|
||||||
|
labels: dependencies
|
||||||
|
milestone: next
|
||||||
|
branch: aio-helm-update
|
||||||
Loading…
Add table
Add a link
Reference in a new issue