ci(github): Cleanup unused chart-repos (#1392)
Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
parent
8b28c6a826
commit
57b142f5ca
5 changed files with 3 additions and 16 deletions
4
.github/configs/ct-install.yaml
vendored
4
.github/configs/ct-install.yaml
vendored
|
@ -6,11 +6,7 @@ target-branch: main
|
||||||
chart-dirs:
|
chart-dirs:
|
||||||
- charts
|
- charts
|
||||||
chart-repos:
|
chart-repos:
|
||||||
- argo=https://argoproj.github.io/argo-helm
|
|
||||||
- minio=https://helm.min.io/
|
|
||||||
- dandydeveloper=https://dandydeveloper.github.io/charts/
|
- dandydeveloper=https://dandydeveloper.github.io/charts/
|
||||||
- stable=https://charts.helm.sh/stable
|
|
||||||
- incubator=https://charts.helm.sh/incubator
|
|
||||||
helm-extra-args: "--timeout 600s"
|
helm-extra-args: "--timeout 600s"
|
||||||
validate-chart-schema: false
|
validate-chart-schema: false
|
||||||
validate-maintainers: true
|
validate-maintainers: true
|
||||||
|
|
4
.github/configs/ct-lint.yaml
vendored
4
.github/configs/ct-lint.yaml
vendored
|
@ -6,11 +6,7 @@ target-branch: main
|
||||||
chart-dirs:
|
chart-dirs:
|
||||||
- charts
|
- charts
|
||||||
chart-repos:
|
chart-repos:
|
||||||
- argo=https://argoproj.github.io/argo-helm
|
|
||||||
- minio=https://helm.min.io/
|
|
||||||
- dandydeveloper=https://dandydeveloper.github.io/charts/
|
- dandydeveloper=https://dandydeveloper.github.io/charts/
|
||||||
- stable=https://charts.helm.sh/stable
|
|
||||||
- incubator=https://charts.helm.sh/incubator
|
|
||||||
helm-extra-args: "--timeout 600s"
|
helm-extra-args: "--timeout 600s"
|
||||||
validate-chart-schema: false
|
validate-chart-schema: false
|
||||||
validate-maintainers: true
|
validate-maintainers: true
|
||||||
|
|
1
.github/workflows/lint-and-test.yml
vendored
1
.github/workflows/lint-and-test.yml
vendored
|
@ -1,5 +1,4 @@
|
||||||
## Reference: https://github.com/helm/chart-testing-action
|
## Reference: https://github.com/helm/chart-testing-action
|
||||||
---
|
|
||||||
name: Linting and Testing
|
name: Linting and Testing
|
||||||
on: pull_request
|
on: pull_request
|
||||||
jobs:
|
jobs:
|
||||||
|
|
1
.github/workflows/pr-sizing.yml
vendored
1
.github/workflows/pr-sizing.yml
vendored
|
@ -1,5 +1,4 @@
|
||||||
## Reference: https://github.com/pascalgn/size-label-action
|
## Reference: https://github.com/pascalgn/size-label-action
|
||||||
---
|
|
||||||
name: 'PR Labeling'
|
name: 'PR Labeling'
|
||||||
on:
|
on:
|
||||||
pull_request_target:
|
pull_request_target:
|
||||||
|
|
9
.github/workflows/publish.yml
vendored
9
.github/workflows/publish.yml
vendored
|
@ -1,10 +1,10 @@
|
||||||
---
|
## Reference: https://github.com/helm/chart-releaser-action
|
||||||
name: Chart Publish
|
name: Chart Publish
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
- rewrite-build
|
|
||||||
jobs:
|
jobs:
|
||||||
publish:
|
publish:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -19,11 +19,8 @@ jobs:
|
||||||
|
|
||||||
- name: Add dependency chart repos
|
- name: Add dependency chart repos
|
||||||
run: |
|
run: |
|
||||||
helm repo add argo https://argoproj.github.io/argo-helm
|
|
||||||
helm repo add minio https://helm.min.io/
|
|
||||||
helm repo add dandydeveloper https://dandydeveloper.github.io/charts/
|
helm repo add dandydeveloper https://dandydeveloper.github.io/charts/
|
||||||
helm repo add stable https://charts.helm.sh/stable
|
|
||||||
helm repo add incubator https://charts.helm.sh/incubator
|
|
||||||
- name: Configure Git
|
- name: Configure Git
|
||||||
run: |
|
run: |
|
||||||
git config user.name "$GITHUB_ACTOR"
|
git config user.name "$GITHUB_ACTOR"
|
||||||
|
|
Loading…
Reference in a new issue