Skip to content

Commit 43ba897

Browse files
feat: initial
1 parent 6925ed5 commit 43ba897

File tree

11 files changed

+894
-0
lines changed

11 files changed

+894
-0
lines changed

.github/workflows/ci.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- '**'
6+
pull_request:
7+
branches:
8+
- '**'
9+
jobs:
10+
lint:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-go@v4
15+
with:
16+
go-version: '1.21'
17+
- uses: golangci/golangci-lint-action@v3
18+
build:
19+
runs-on: ${{ matrix.os }}
20+
needs: lint
21+
strategy:
22+
fail-fast: true
23+
matrix:
24+
os: [macos-latest, windows-latest, ubuntu-latest]
25+
steps:
26+
- uses: actions/checkout@v4
27+
- uses: actions/setup-go@v4
28+
with:
29+
go-version: '1.21'
30+
- run: go build ./
31+
- run: go test -v ./...
32+
release:
33+
runs-on: ubuntu-latest
34+
needs: build
35+
steps:
36+
- uses: actions/checkout@v4
37+
- uses: actions/setup-go@v4
38+
with:
39+
go-version: '1.21'
40+
- run: ./scripts/build-local.sh
41+
- uses: go-semantic-release/action@v1
42+
with:
43+
hooks: goreleaser
44+
custom-arguments: '--changelog-generator llm'
45+
env:
46+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea/
2+
.envrc

.golangci.yaml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
linters:
2+
enable:
3+
- errorlint
4+
- forbidigo
5+
- gochecknoinits
6+
- gocritic
7+
- goconst
8+
- gocyclo
9+
- gofumpt
10+
- goimports
11+
- misspell
12+
- revive
13+
- unconvert
14+
- unparam
15+
- wastedassign
16+
17+
linters-settings:
18+
gocyclo:
19+
min-complexity: 12
20+
gofumpt:
21+
extra-rules: true
22+
govet:
23+
enable-all: true
24+
disable:
25+
- fieldalignment

.goreleaser.yaml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
builds:
2+
- env:
3+
- CGO_ENABLED=0
4+
targets:
5+
- linux_amd64
6+
- linux_arm64
7+
- darwin_amd64
8+
- darwin_arm64
9+
- linux_arm
10+
- windows_amd64
11+
main: ./
12+
flags:
13+
- -trimpath
14+
ldflags:
15+
- -extldflags '-static'
16+
- -s -w -X main.version={{.Version}}
17+
18+
archives:
19+
- format: binary
20+
name_template: '{{ .Binary }}_v{{ .Version }}_{{ .Os }}_{{ .Arch }}'
21+
22+
checksum:
23+
name_template: '{{ .ProjectName }}_v{{ .Version }}_checksums.txt'

CODE_OF_CONDUCT.md

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as
6+
contributors and maintainers pledge to making participation in our project and
7+
our community a harassment-free experience for everyone, regardless of age, body
8+
size, disability, ethnicity, sex characteristics, gender identity and expression,
9+
level of experience, education, socio-economic status, nationality, personal
10+
appearance, race, religion, or sexual identity and orientation.
11+
12+
## Our Standards
13+
14+
Examples of behavior that contributes to creating a positive environment
15+
include:
16+
17+
* Using welcoming and inclusive language
18+
* Being respectful of differing viewpoints and experiences
19+
* Gracefully accepting constructive criticism
20+
* Focusing on what is best for the community
21+
* Showing empathy towards other community members
22+
23+
Examples of unacceptable behavior by participants include:
24+
25+
* The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
* Trolling, insulting/derogatory comments, and personal or political attacks
28+
* Public or private harassment
29+
* Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
* Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
33+
34+
## Our Responsibilities
35+
36+
Project maintainers are responsible for clarifying the standards of acceptable
37+
behavior and are expected to take appropriate and fair corrective action in
38+
response to any instances of unacceptable behavior.
39+
40+
Project maintainers have the right and responsibility to remove, edit, or
41+
reject comments, commits, code, wiki edits, issues, and other contributions
42+
that are not aligned to this Code of Conduct, or to ban temporarily or
43+
permanently any contributor for other behaviors that they deem inappropriate,
44+
threatening, offensive, or harmful.
45+
46+
## Scope
47+
48+
This Code of Conduct applies both within project spaces and in public spaces
49+
when an individual is representing the project or its community. Examples of
50+
representing a project or community include using an official project e-mail
51+
address, posting via an official social media account, or acting as an appointed
52+
representative at an online or offline event. Representation of a project may be
53+
further defined and clarified by project maintainers.
54+
55+
## Enforcement
56+
57+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58+
reported by contacting the project team at github+coc@christophwitzko.com. All
59+
complaints will be reviewed and investigated and will result in a response that
60+
is deemed necessary and appropriate to the circumstances. The project team is
61+
obligated to maintain confidentiality with regard to the reporter of an incident.
62+
Further details of specific enforcement policies may be posted separately.
63+
64+
Project maintainers who do not follow or enforce the Code of Conduct in good
65+
faith may face temporary or permanent repercussions as determined by other
66+
members of the project's leadership.
67+
68+
## Attribution
69+
70+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72+
73+
[homepage]: https://www.contributor-covenant.org
74+
75+
For answers to common questions about this code of conduct, see
76+
https://www.contributor-covenant.org/faq

LICENSE

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2023 Christoph Witzko
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
SOFTWARE.

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# :crystal_ball: changelog-generator-llm
2+
[![CI](https://github.com/go-semantic-release/changelog-generator-llm/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/go-semantic-release/changelog-generator-llm/actions?query=workflow%3ACI+branch%3Amain)
3+
[![Go Report Card](https://goreportcard.com/badge/github.com/go-semantic-release/changelog-generator-llm)](https://goreportcard.com/report/github.com/go-semantic-release/changelog-generator-llm)
4+
[![PkgGoDev](https://pkg.go.dev/badge/github.com/go-semantic-release/changelog-generator-llm)](https://pkg.go.dev/github.com/go-semantic-release/changelog-generator-llm)
5+
6+
Uses LLMs to generate the changelog for a release.
7+
8+
## Licence
9+
10+
The [MIT License (MIT)](http://opensource.org/licenses/MIT)
11+
12+
Copyright © 2023 [Christoph Witzko](https://twitter.com/christophwitzko)

go.mod

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
module github.com/go-semantic-release/changelog-generator-llm
2+
3+
go 1.21
4+
5+
require (
6+
github.com/go-semantic-release/semantic-release/v2 v2.28.0
7+
github.com/sashabaranov/go-openai v1.16.1
8+
)
9+
10+
require (
11+
github.com/Masterminds/semver/v3 v3.2.1 // indirect
12+
github.com/fatih/color v1.15.0 // indirect
13+
github.com/fsnotify/fsnotify v1.6.0 // indirect
14+
github.com/golang/protobuf v1.5.3 // indirect
15+
github.com/hashicorp/go-hclog v1.5.0 // indirect
16+
github.com/hashicorp/go-plugin v1.5.1 // indirect
17+
github.com/hashicorp/hcl v1.0.0 // indirect
18+
github.com/hashicorp/yamux v0.1.1 // indirect
19+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
20+
github.com/magiconair/properties v1.8.7 // indirect
21+
github.com/mattn/go-colorable v0.1.13 // indirect
22+
github.com/mattn/go-isatty v0.0.19 // indirect
23+
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
24+
github.com/mitchellh/mapstructure v1.5.0 // indirect
25+
github.com/oklog/run v1.1.0 // indirect
26+
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
27+
github.com/spf13/afero v1.9.5 // indirect
28+
github.com/spf13/cast v1.5.1 // indirect
29+
github.com/spf13/cobra v1.7.0 // indirect
30+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
31+
github.com/spf13/pflag v1.0.5 // indirect
32+
github.com/spf13/viper v1.16.0 // indirect
33+
github.com/subosito/gotenv v1.6.0 // indirect
34+
golang.org/x/net v0.15.0 // indirect
35+
golang.org/x/sys v0.12.0 // indirect
36+
golang.org/x/text v0.13.0 // indirect
37+
google.golang.org/genproto/googleapis/rpc v0.0.0-20230911183012-2d3300fd4832 // indirect
38+
google.golang.org/grpc v1.58.0 // indirect
39+
google.golang.org/protobuf v1.31.0 // indirect
40+
gopkg.in/ini.v1 v1.67.0 // indirect
41+
gopkg.in/yaml.v3 v3.0.1 // indirect
42+
)

0 commit comments

Comments
 (0)