From b37d87e50ff29bbb198d42c436ca2c076dd4ce51 Mon Sep 17 00:00:00 2001 From: Trae Yelovich Date: Wed, 4 Sep 2024 13:44:57 -0400 Subject: [PATCH] chore(ci): Clean up column names Signed-off-by: Trae Yelovich --- .github/workflows/merge-by/build-table-and-notify.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/merge-by/build-table-and-notify.js b/.github/workflows/merge-by/build-table-and-notify.js index 0b96b2e50b..e1d0e9e40c 100644 --- a/.github/workflows/merge-by/build-table-and-notify.js +++ b/.github/workflows/merge-by/build-table-and-notify.js @@ -16,7 +16,7 @@ const buildTableRow = (owner, repo, pr) => `| [#${pr.number}](https://github.com/${owner}/${repo}/pull/${pr.number}) | [**${pr.title.trim()}**](https://github.com/${owner}/${repo}/pull/${pr.number}) | ${pr.author} | ${pr.mergeBy ?? "N/A"} | ${pr.hasReviews ? ":white_check_mark:" : ":white_large_square:"} |`; const tableHeader = ` -| # | Title | Author | Merge-by date | Reviewed (>= 2 approvals) | +| # | Title | Author | Merge by | Ready to merge? | | - | ----- | ------ | ------------- | -------------- |`; /**