Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: releases replication key (#254)
I have updated the `replication_key` for GitHub releases to `created_at` field vs the `published_at` field. The `pubished_at` field can be `null` according to the [REST API endpoints for releases](https://docs.github.com/en/rest/releases/releases?apiVersion=2022-11-28) This was causing the below error ``` {"TypeError: '>' not supported between instances of 'NoneType' and 'str'"} ``` `created_at` field can't be null so this should fix that.
- Loading branch information