feat(teams): add members to team status #419
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: 'Kustomize lint' | |
on: | |
pull_request: | |
paths: | |
- 'charts/**' | |
jobs: | |
kustomize: | |
runs-on: [ default ] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Controller-gen | |
run: make controller-gen | |
- name: Setup Kustomize | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
curl --request GET \ | |
--url "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" \ | |
--header "Authorization: Bearer $GH_TOKEN" | |
- name: Setup API documentation generator | |
run: docker pull ghcr.io/srfrnk/crd-api-doc-gen:latest | |
- name: lint | |
run: make kustomize-build-crds |