From 26c5f035c661af3cab76e903f27bea234c12741e Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 24 Apr 2024 18:31:39 -0400 Subject: [PATCH] Ignore errors drafting release notes --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c673b90968e2ed6a03d3209f3a1a571d49c45020..b81becdeffcb25e02e1f7fc1c2ea369ea4b2ee80 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -211,7 +211,8 @@ jobs: exit 1 fi mkdir -p target/ - script/draft-release-notes "$version" "$channel" > target/release-notes.md + # Ignore any errors that occur while drafting release notes to not fail the build. + script/draft-release-notes "$version" "$channel" > target/release-notes.md || true - name: Generate license file run: script/generate-licenses