Add the ability to set up studio annotations #230
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lint | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
paths-ignore: | |
- '.github/**' | |
- '**/README.md' | |
- '**/CHANGELOG.md' | |
- '**/LICENSE' | |
workflow_dispatch: | |
inputs: | |
kubernetes_version: | |
description: 'Choose k8s version (example v1.22)' | |
type: string | |
required: true | |
jobs: | |
lint-chart: | |
name: lint chart ${{ github.event.repository.name }} | |
uses: ONLYOFFICE/ga-common/.github/workflows/helm-lint.yaml@master | |
with: | |
ct_version: 3.8.0 | |
enable_yaml_lint: true | |
enable_kube_lint: true | |
validate-manifests: | |
name: "k8s manifests api validation" | |
uses: ONLYOFFICE/ga-common/.github/workflows/deprecated-recources.yaml@master | |
with: | |
manual_k8s: ${{ github.event.inputs.kubernetes_version }} | |
set_keys: | | |
"--set serviceAccount.create=true \ | |
--set healthchecks.enabled=true \ | |
--set ingress.enabled=true \ | |
--set install.job.enabled=true \ | |
--set connections.brokerUser=guest \ | |
--set connections.brokerPassword=guest" |