From cafaf997859e5368a7be574eac6a11cd70969fe0 Mon Sep 17 00:00:00 2001 From: Ken Odegard Date: Mon, 28 Aug 2023 19:39:14 -0500 Subject: [PATCH] Include a trailing newline in CLA PR --- check-cla/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check-cla/action.yml b/check-cla/action.yml index ac8cf4a7..2d042dc4 100644 --- a/check-cla/action.yml +++ b/check-cla/action.yml @@ -134,7 +134,7 @@ runs: signees = json.loads(path.read_text()) signees["contributors"].append("${{ steps.metadata.outputs.contributor }}") signees["contributors"].sort(key=str.lower) - path.write_text(json.dumps(signees, indent=2)) + path.write_text(json.dumps(signees, indent=2) + "\n") # if unsigned, create PR - name: Create PR with new CLA signee