Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ GitHub Action to generate a `CHANGELOG.md` on new tags, with optional Telegram n

## Breaking changes in 2.x

- The action now lives at the repository root and is used as `Waveful/ChangelogAction@v2.0.1`.
- The action now lives at the repository root and is used as `Waveful/ChangelogAction@v2.0.2`.
- The old split actions (`/generate`, `/notify`, `/annotate`) have been removed from the default setup.
- Changelog generation is always the default behavior.
- Telegram notification only runs when `telegram-bot-token`, `telegram-chat-id`, and `changelog-url` are all provided.
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
steps:
- name: Run changelog action
id: changelog
uses: Waveful/ChangelogAction@v2.0.1
uses: Waveful/ChangelogAction@v2.0.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
target-branch: master
Expand Down
8 changes: 7 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,13 @@ runs:
Start with a level-2 heading using the current tag.
Use the bullet symbol "•" for every list item.
Keep the language simple, concise, and understandable for non-technical readers.
Group related changes together when it improves readability.

Before writing, read all provided information and identify the distinct changes.
PR details and commit details may overlap; combine them, do not duplicate.
Merge multiple items addressing the same feature, bug, or area into a single bullet.
Never describe the same change more than once.
Focus on what changed from the user's perspective rather than listing every commit or PR.

Ignore automation-only changes unless they materially affect users.
Do not add any introduction, analysis notes, or closing text.
EOF
Expand Down