Align files (#104) #86
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: check generated yamls | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- '**.md' | ||
jobs: | ||
check: | ||
if: !contains(github.event.pull_request.labels.*.name, 'skip-ci') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: generate manifests | ||
run: make all | ||
- name: check no change | ||
run: git diff --quiet --exit-code && [ -z "$(git status --porcelain)" ] |