A minimal projects to list all closed issues in GitHub repository by milestone in Markdown format. Right now, it is designed to create the changelist for NUnit.
In order to build, you must set the GitHub authentication token in TOKEN
in Secrets.cs
. Do not check this change in. You can hide the changes to Secrets.cs
from git by running,
git update-index --assume-unchanged GetChanges/Secrets.cs
The token is a Personal Access Token which logs you into your GitHub account.
- Visit the following URL: https://github.com/settings/tokens/new
- Enter a description in the Token description field, like "GetChanges token".
- Click Create Token.
- Your new Personal Access token will be displayed.
- Copy this token, and enter it as the
TOKEN
string.
If you ever want to revoke the token, visit the GitHub Applications settings page and click Delete next to the key you wish to remove.