-
-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only getting the last commit on "CHANGELOG.md" #275
Comments
|
I try, but yet only one :( |
my repo: https://github.com/felipe-frade/github-actions-test-2 and the log
auto-changelog: Fetching tags…auto-changelog: 2 version tags found…auto-changelog: Fetched v1.10.0…auto-changelog: Fetched v1.10.0…auto-changelog: 1 kB written to CHANGELOG.md
auto-changelog: Fetching tags…auto-changelog: 1 version tags found…auto-changelog: Fetched v1.10.0…auto-changelog: 1 kB written to changelog-data.json |
Hi @felipe-frade, I got a similar problem today. Just try adding jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# default depth is 1, which is not enough for changelog generation
fetch-depth: 0 HTH :) |
My first Issue open in any github project.
When runned (auto-changelog) localy its beatfull, but when the github runs in the workflow, doesnt.
The action is made on a merge.
I use npm.
It run: auto-changelog -p --template changelog-template.hbs --commit-limit false && git add CHANGELOG.md.
But always get only the last commit.
Anyone knows why ?
The text was updated successfully, but these errors were encountered: