Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/naorlivne/github-changelog-generator-dockerized
a dockerized version of https://github.com/github-changelog-generator/github-changelog-generator
https://github.com/naorlivne/github-changelog-generator-dockerized
Last synced: about 1 month ago
JSON representation
a dockerized version of https://github.com/github-changelog-generator/github-changelog-generator
- Host: GitHub
- URL: https://github.com/naorlivne/github-changelog-generator-dockerized
- Owner: naorlivne
- License: lgpl-3.0
- Created: 2019-05-14T08:40:48.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-20T10:08:50.000Z (7 months ago)
- Last Synced: 2024-12-10T11:48:44.059Z (about 1 month ago)
- Language: Dockerfile
- Size: 47.9 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# github-changelog-generator-dockerized
CI/CD build status: [![CI/CD](https://github.com/naorlivne/github-changelog-generator-dockerized/actions/workflows/full_ci_cd_workflow.yml/badge.svg)](https://github.com/naorlivne/github-changelog-generator-dockerized/actions/workflows/full_ci_cd_workflow.yml)
A dockerized version of https://github.com/github-changelog-generator/github-changelog-generator
Required & optional envvars:
* GITHUB_USER - the user/org/owner of the project in github.
* CHANGELOG_GITHUB_TOKEN - optional - the token used to auth against github, if not set will use an unauthenticated user which is limited to 50 API requests.
* GITHUB_PROJECT - the project name in github.
* OUTPUT_PATH - optional - the path inside the container that the changlog file will be created to, defaults to `/output/CHANGELOG.md` if not set.
Example run command:```bash
docker run -e GITHUB_USER=myusername -e GITHUB_PROJECT=myproject -v `pwd`:/output naorlivne/github-changelog-generator-dockerized
```