https://github.com/drone/go-login
Package login provides login handlers for multiple Source Control Management systems.
https://github.com/drone/go-login
Last synced: 5 months ago
JSON representation
Package login provides login handlers for multiple Source Control Management systems.
- Host: GitHub
- URL: https://github.com/drone/go-login
- Owner: drone
- License: bsd-3-clause
- Created: 2017-12-13T05:31:57.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-11-22T10:41:35.000Z (over 4 years ago)
- Last Synced: 2025-09-09T12:16:06.587Z (10 months ago)
- Language: Go
- Homepage:
- Size: 50.8 KB
- Stars: 28
- Watchers: 7
- Forks: 17
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Run the changelog generator.
```BASH
docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u drone -p go-login -t
```
You can generate a token by logging into your GitHub account and going to Settings -> Personal access tokens.
Next we tag the PR's with the fixes or enhancements labels. If the PR does not fufil the requirements, do not add a label.
**Before moving on make sure to update the version file `version/version.go && version/version_test.go`.**
Run the changelog generator again with the future version according to semver.
```BASH
docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u drone -p go-login -t --future-release v1.0.0
```
Create your pull request for the release. Get it merged then tag the release.
[⬆ Back to Top](#table-of-contents)