-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (30 loc) · 1.1 KB
/
charts.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Helm Charts
on:
push:
pull_request:
jobs:
lint:
# Deduplicate jobs from pull requests and branch pushes within the same repo.
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4.1.7
with:
fetch-depth: 0
- name: Setup Helm
uses: azure/setup-helm@v4.2.0
- name: Setup chart-testing
uses: helm/chart-testing-action@v2.6.1
- name: Install chart dependencies
run: |
helm repo add prometheus https://prometheus-community.github.io/helm-charts
helm repo add jaegertracing https://jaegertracing.github.io/helm-charts
helm repo add open-telemetry https://open-telemetry.github.io/opentelemetry-helm-charts
helm repo add oauth2-proxy https://oauth2-proxy.github.io/manifests
- name: Lint
run: >
ct
lint
--target-branch=${{ github.event.repository.default_branch }}
--validate-maintainers=false