Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tonytw1/trello-changelog
Summary changelog generated from Trello boards
https://github.com/tonytw1/trello-changelog
Last synced: 4 days ago
JSON representation
Summary changelog generated from Trello boards
- Host: GitHub
- URL: https://github.com/tonytw1/trello-changelog
- Owner: tonytw1
- Created: 2018-10-31T23:39:41.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-04T20:57:45.000Z (about 2 years ago)
- Last Synced: 2024-04-16T10:17:25.811Z (7 months ago)
- Language: Scala
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Trello changelog
Pretty much every product we deal with has a requirement to inform end users when we change things.
We use Trello internally but don't necessarily what to make our Trello boards public.This service compiles a public facing changelog by extracting Trello cards which are in the 'Done' list and have been
explictly labeled as public.## Usage
You will need to supply Trello API credentials, the name of your 'Done' list and the name of the label you use to indicate that a card
is public and should be included in the changelog.In return you will get a list of changelog items sorted in date descending order. The public date is the date the card was moved into the done column.
## Output
A list of [ChangeLogItem](app/model/ChangeLogItem.scala) in date descending order.
```
[
{
"title": "Bug fix. Widget ordering",
"description": "The widget thingamagig now outputs content right side round.",
"date": "2018-10-16T18:29:50.828Z"
},
{
"title": "Widgets now available",
"description": "The system can now produce widgets.",
"date": "2018-09-09T19:55:37.025Z"
}
]
```