Skip to content
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

fix: move to standard changelog #79

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 1 addition & 34 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,37 +7,4 @@ on:

jobs:
create_changelog:
runs-on: ubuntu-latest

steps:
- name: checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: install
run: |
pip install auto-changelog

- name: generate
env:
REPO: ${{github.repository}}
run: |
auto-changelog --unreleased \
--remote "https://github.com/${REPO}.git" \
--diff-url "https://github.com/${REPO}/compare/{previous}...{current}" \
--issue-url "https://github.com/${REPO}/issues/{id}"

- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
commit-message: "chore: changelog bump"
delete-branch: true
title: 'chore: update changelog'
body: |
Updates the changelog with the latest updates
This is raised as a draft and should be merged on the creation of a new release
labels: 'chore'
base: 'master'
branch: create-pull-request/changelog_bump
draft: true
uses: hamlet-io/.github/.github/workflows/[email protected]
Loading