Skip to content

Commit

Permalink
chore(ci): update changelog workflow (#1686)
Browse files Browse the repository at this point in the history
  • Loading branch information
anhductn2001 authored Dec 30, 2024
1 parent 8bdde21 commit b53fd9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 57 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
if [ "$branch_exists" == "true" ]; then
git checkout auto-changelog-update-do-not-create-manually
git merge main --strategy-option theirs --allow-unrelated-histories --no-edit
conventional-changelog -p angular -i CHANGELOG.md -s -r 0 --append
conventional-changelog -p angular -i CHANGELOG.md -s
git add CHANGELOG.md
git commit -m "Update CHANGELOG.md [skip ci]"
git push origin auto-changelog-update-do-not-create-manually
Expand All @@ -50,7 +50,7 @@ jobs:
git checkout main
git checkout -b auto-changelog-update-do-not-create-manually
git push origin auto-changelog-update-do-not-create-manually
conventional-changelog -p angular -i CHANGELOG.md -s -r 0 --append
conventional-changelog -p angular -i CHANGELOG.md -s
fi
- name: Create Pull Request
Expand Down
55 changes: 0 additions & 55 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,58 +1,3 @@
<!--
Guiding Principles:
Changelogs are for humans, not machines.
There should be an entry for every single version.
The same types of changes should be grouped.
Versions and sections should be linkable.
The latest version comes first.
The release date of each version is displayed.
Mention whether you follow Semantic Versioning.
Usage:
Change log entries are to be added to the Unreleased section under the
appropriate stanza (see below). Each entry should ideally include a tag and
the Github issue reference in the following format:
* (<tag>) \#<issue-number> message
The issue numbers will later be link-ified during the release process so you do
not have to worry about including a link manually, but you can if you wish.
Types of changes (Stanzas):
"Features" for new features.
"Improvements" for changes in existing functionality.
"Deprecated" for soon-to-be removed features.
"Bug Fixes" for any bug fixes.
"Client Breaking" for breaking CLI commands and REST routes used by end-users.
"API Breaking" for breaking exported APIs used by developers building on SDK.
"State Machine Breaking" for any changes that result in a different AppState
given same genesisState and txList.
Ref: https://keepachangelog.com/en/1.0.0/
-->

# Changelog

## Unreleased

### State Machine Breaking

- (dependencies) [#970](https://github.com/dymensionxyz/dymension/pull/970) Bump dependencies cosmos-sdk to v0.47.12

### Features

- (rollapp) [#1127](https://github.com/dymensionxyz/dymension/issues/1127) Add apps to rollapp
- (sequencer) [#1037](https://github.com/dymensionxyz/dymension/issues/1037) Enforce rpcs and evm rpcs for sequencer registration
- (rollapp) [#1036](https://github.com/dymensionxyz/dymension/issues/1036) Add VMType field to Rollapp
- (swagger) [#856](https://github.com/dymensionxyz/dymension/issues/856) Add make command `proto-swagger-gen`
- (delayedack) [#825](https://github.com/dymensionxyz/dymension/issues/825) Add query for rollapp packets using CLI

### Bug Fixes

- (eibc) [#845](https://github.com/dymensionxyz/dymension/issues/845) Segregate eibc events as per use cases

## [v3.1.0](https://github.com/dymensionxyz/dymension/releases/tag/v3.1.0)

### Features
Expand Down

0 comments on commit b53fd9b

Please sign in to comment.