Skip to content

Commit

Permalink
docs: center last 2 cols of inputstbl
Browse files Browse the repository at this point in the history
  • Loading branch information
tmillr committed Dec 23, 2022
1 parent a480b07 commit c82847c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This GitHub action automatically detects breaking changes by scanning the messag

<!-- prettier-ignore-start -->
| **Key** | **Description** | **Required** | **Default** |
| --- | --- | --- | --- |
| --- | --- | :---: | :---: |
| `token` | The token used for posting the comments (e.g. `github.token`). | `true` | |
| `issueNumber` | Issue to comment on for each breaking change commit found. May be combined with `discussionNumber`. (`integer`) | `false` | |
| `discussionNumber` | Discussion to comment on for each breaking change commit found. May be combined with `issueNumber`. (`integer`) | `false` | |
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ ${usageFile
),
];

table.push(table[0].map((arr) => "---"));
table.push(table[0].map((arr, i) => (i < 2 ? "---" : ":---:")));

for (const [key, val] of Object.entries(inputs))
table.push([
Expand Down

0 comments on commit c82847c

Please sign in to comment.