mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-03-31 09:21:52 +01:00
- Added functionality to release notes app to generate full changelog.yml from GitHub metadata. (Incremental) - Updated PULL_REQUEST_TEMPLATE.md to reflect changes (Strict component list)
14 lines
250 B
C#
14 lines
250 B
C#
using System.Collections.Generic;
|
|
|
|
using Octokit;
|
|
|
|
namespace Tgstation.Server.ReleaseNotes
|
|
{
|
|
sealed class Change
|
|
{
|
|
public List<string> Descriptions { get; set; }
|
|
public string Author { get; set; }
|
|
public int PullRequest { get; set; }
|
|
}
|
|
}
|