From 195880caedef7898e4329516ba0ac1d424a7499b Mon Sep 17 00:00:00 2001 From: Mike Wendt Date: Thu, 20 Aug 2020 21:58:49 -0400 Subject: [PATCH] FIX Update change log check The change log check was updated in `develop` but both `master` and `main` have an older version of the `ci/checks/changelog.sh`. Without the forced checkout this will break and not complete the check successfully. --- ci/checks/changelog.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/checks/changelog.sh b/ci/checks/changelog.sh index 6a613506..77a37d3c 100755 --- a/ci/checks/changelog.sh +++ b/ci/checks/changelog.sh @@ -5,10 +5,10 @@ ########################### # Checkout main for comparison -git checkout --quiet main +git checkout --force --quiet main # Switch back to tip of PR branch -git checkout --quiet current-pr-branch +git checkout --force --quiet current-pr-branch # Ignore errors during searching set +e