You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I forked an upstream repository, then made some changes, and after that created a pull request to that upstream repository.
However, the CI GitHub Action is failing with the message that the documentation is not up to date, even though the README has been updated in my fork.
CI Job Configuration:
......jobs:
lint-test:
runs-on: ubuntu-lateststeps:
- name: Checkoutuses: actions/checkout@v4with:
fetch-depth: 0
- name: Set up Helmuses: azure/setup-helm@v4with:
version: v3.15.4
- uses: actions/setup-python@v5with:
python-version: '3.12'check-latest: true
- name: Set up chart-testinguses: helm/[email protected]
- name: Run chart-testing (list-changed)id: list-changedrun: | changed=$(ct list-changed \ --config ct.yaml \ --target-branch ${{ github.event.repository.default_branch }}) if [[ -n "$changed" ]]; then echo "changed=true" >> "$GITHUB_OUTPUT" fi
- name: Check if docs are updatedif: steps.list-changed.outputs.changed == 'true'run: | make docs if [[ -n "$(git status --porcelain --untracked-files=no)" ]]; then echo "Documentation not up to date." >&2 echo "Please run 'make docs' from the repository root and commit changes!" >&2 git diff exit 1 else echo "Documentation is up to date." >&2 fi....
Error Message:
Documentation not up to date.
Please run 'make docs' from the repository root and commit changes!
diff --git a/charts/README.md b/charts/README.md
+| defaultTFDistribution | string | `"terraform"` | |
| defaultTFVersion | string | `""` | Sets the default terraform version to be used in the server. Check values.yaml for examples. |
-| defaultTFDistribution | string | `terraform` | Sets the default terraform distribution to use. Can be set to terraform or opentofu. |
Error: Process completed with exit code 1.
Steps to Reproduce:
Fork the repository.
Make changes to the Helm chart and update the README.
Create a pull request to the upstream repository.
Observe the CI GitHub Action failing with the above error message.
Expected Behavior:
The CI should recognize the updated documentation in the fork and pass the checks.
Actual Behavior:
The CI fails, indicating that the documentation is not up to date, despite the README being updated in the fork.
Additional Information:
The changes to the README in my fork include updates to the defaultTFDistribution field.
The git diff output shows the expected changes, but the CI still fails.
Request for Help:
Could you please help identify why the CI is not recognizing the updated documentation and how to resolve this issue?
The text was updated successfully, but these errors were encountered:
Hello!
I forked an upstream repository, then made some changes, and after that created a pull request to that upstream repository.
However, the CI GitHub Action is failing with the message that the documentation is not up to date, even though the README has been updated in my fork.
CI Job Configuration:
Error Message:
Steps to Reproduce:
Expected Behavior:
The CI should recognize the updated documentation in the fork and pass the checks.
Actual Behavior:
The CI fails, indicating that the documentation is not up to date, despite the README being updated in the fork.
Additional Information:
defaultTFDistribution
field.git diff
output shows the expected changes, but the CI still fails.Request for Help:
Could you please help identify why the CI is not recognizing the updated documentation and how to resolve this issue?
The text was updated successfully, but these errors were encountered: