Skip to content

fix: correct prometheus alerts configmap name #202

fix: correct prometheus alerts configmap name

fix: correct prometheus alerts configmap name #202

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0 # Required for fetch git tags step
# Ensure git tags are available for version scripts
- name: Fetch git tags
run: git fetch --tags --force
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.23
- name: Install Helm
uses: azure/setup-helm@v4
with:
version: v3.17.1
- name: Install yq
run: |
sudo wget https://github.com/mikefarah/yq/releases/download/v4.42.1/yq_linux_amd64 -O /usr/bin/yq &&\
sudo chmod +x /usr/bin/yq
- name: Lint Helm chart and rules
run: make lint