Skip to content

Commit 642ef36

Browse files
committed
Fix check signoff for github actions
Github actions checkout changed to pull only a single generated merge commit instead of the actual PR commit id. This breaks check_format test for signoff. Pulling history of 2 will include the actual commit ID. Change-Id: I7d83871159d24faaf2f8e6086f12173e14cbcf3c Signed-off-by: Greg Tucker <[email protected]>
1 parent 0de83db commit 642ef36

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/[email protected]
16+
with:
17+
fetch-depth: 2
1618
- name: Install indent
1719
run: sudo apt install indent
1820
- name: Run format check

0 commit comments

Comments
 (0)