Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(docs): checkout requires fetch-depth: 0
Fixes the documentation to advise using fetch-depth: 0, which is needed for `commitlint --from` to check against the history of commits.
  • Loading branch information
ari-becker authored Mar 19, 2023
commit 29834955a2b5f0d24719a4dc98269b53a9b91923
4 changes: 3 additions & 1 deletion docs/guides-ci-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
commitlint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install required dependencies
run: |
apt update
Expand Down