Possible to use changie in a github action for pull requests? #436
-
In our organization, we merge everything to "develop". Once a week or bi-weekly we merge everything from "develop" to "master". We want to have a list of all the issues associated with the PR in the PR description based on the commits, which are linked to the issues (with #issue-number). So basically, I want to have the change logs from changie in our master PR description. Is it possible? Ive tried a lot of things but nothing seemed to work. Also, I couldnt find a workaround for our specific case yet. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
I have built a GitHub action that should get you started: https://github.com/miniscruff/changie-action |
Beta Was this translation helpful? Give feedback.
I have built a GitHub action that should get you started: https://github.com/miniscruff/changie-action
Changie itself has a GitHub workflow that creates a PR for releases here: https://github.com/miniscruff/changie/blob/main/.github/workflows/gen-release-pr.yml just replace
go run main.go
with the action above.You can use the newly generated version file as the body of the PR as well.