From 41e0a4006e4d930f0438044b5c8d2dd99bd03588 Mon Sep 17 00:00:00 2001 From: Yuvraj Date: Sun, 11 Jul 2021 17:13:22 +0530 Subject: [PATCH] #none Fix DCO make target (#139) * Fix DCO make target Signed-off-by: Yuvraj * added github checkout depth to 2 Signed-off-by: Yuvraj --- flytectl/.github/workflows/build.yaml | 2 +- flytectl/docs/CONTRIBUTING.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flytectl/.github/workflows/build.yaml b/flytectl/.github/workflows/build.yaml index efdceac3d7..48b9425a89 100644 --- a/flytectl/.github/workflows/build.yaml +++ b/flytectl/.github/workflows/build.yaml @@ -13,7 +13,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 with: - fetch-depth: "0" + fetch-depth: "2" - uses: actions/cache@v2 with: path: | diff --git a/flytectl/docs/CONTRIBUTING.md b/flytectl/docs/CONTRIBUTING.md index 1f93087df8..f170374b9e 100644 --- a/flytectl/docs/CONTRIBUTING.md +++ b/flytectl/docs/CONTRIBUTING.md @@ -20,6 +20,6 @@ Flyte ships commit hooks that allow you to auto-generate the DCO signoff line if it doesn't exist when you run `git commit`. Simply navigate to the flytectl project root and run ```bash -make dco +make setup-precommit ```