Skip to content

Commit

Permalink
allow PR names without ()
Browse files Browse the repository at this point in the history
  • Loading branch information
bboure committed Jan 18, 2024
1 parent 1d6d4ff commit 595df29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/dynamodb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export type DynamoDBItemCollection =
* Feed a table with items
*
* @param {string} tableName The table name
* @param {DynamoDBItemCollection} items The items to feed the table with
* @param {DynamoDBItemCollection} items The items to feed the table with. {@link DynamoDBItemCollection}
*/
export const feedTable = async (
tableName: string,
Expand Down Expand Up @@ -46,7 +46,7 @@ export const feedTable = async (
/**
* Feed multiple tables with items
*
* @param {Record<string, DynamoDBItemCollection>} items A Key-Value pair of table name and items to insert
* @param {Record<string, DynamoDBItemCollection>} items A Key-Value pair of table name and items to insert. (@link DynamoDBItemCollection)
*/
export const feedTables = async (items: {
[tableName: string]: DynamoDBItemCollection;
Expand Down

0 comments on commit 595df29

Please sign in to comment.