docs: Fix typo in the default values file #926
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: Test | |
on: | |
workflow_call: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Checkout master | |
run: git checkout master && git checkout - && git rev-parse HEAD | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "$GITHUB_ACTOR@users.noreply.github.com" | |
- name: Lint | |
run: make lint | |
- name: Test | |
run: make test | |
- name: Track docs | |
run: | | |
if ! [ -z "$(git diff traefik/Chart.yaml | grep version:)" ]; then | |
make docs | |
if ! [ -z "$(git status | grep traefik/VALUES.md)" ]; then | |
echo "Traefik values have changed. Run make docs" | |
exit 1 | |
fi | |
fi |