Skip to content

Update K8s Health Agent #3

Update K8s Health Agent

Update K8s Health Agent #3

name: Update K8s Health Agent
on:
workflow_dispatch:
jobs:
update-k8s-health-agent:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.CR_TOKEN }}
- name: Configure Git
run: |
git config user.name "syntassodev"
git config user.email "[email protected]"
- name: Update chart, template and crds
run: |
./scripts/update-k8s-health-agent
env:
GH_TOKEN: ${{ secrets.CR_TOKEN }}
- name: Commit and push changes
run: |
git add .
git commit -m "feat: update K8s Health Agent to the latest released version"
git push