<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: D T</title>
    <description>The latest articles on DEV Community by D T (@d_t_86971bfbafad68bae2412).</description>
    <link>https://dev.to/d_t_86971bfbafad68bae2412</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4095574%2Fc17edbd7-7413-46c8-930a-bd5cce8f7b4b.jpg</url>
      <title>DEV Community: D T</title>
      <link>https://dev.to/d_t_86971bfbafad68bae2412</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/d_t_86971bfbafad68bae2412"/>
    <language>en</language>
    <item>
      <title>I built a read-only GitHub Action that generates changelogs from ordinary commits</title>
      <dc:creator>D T</dc:creator>
      <pubDate>Wed, 26 Aug 2026 11:08:55 +0000</pubDate>
      <link>https://dev.to/d_t_86971bfbafad68bae2412/i-built-a-read-only-github-action-that-generates-changelogs-from-ordinary-commits-p5i</link>
      <guid>https://dev.to/d_t_86971bfbafad68bae2412/i-built-a-read-only-github-action-that-generates-changelogs-from-ordinary-commits-p5i</guid>
      <description>&lt;p&gt;I built &lt;strong&gt;ChangelogGenie&lt;/strong&gt;, a lightweight open-source GitHub Action and CLI for generating categorized technical Markdown changelogs directly from GitHub commit history.&lt;/p&gt;

&lt;p&gt;The main constraint I wanted to avoid was requiring repositories to adopt a particular commit convention before the tool becomes useful.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why
&lt;/h2&gt;

&lt;p&gt;Many changelog workflows depend on Conventional Commits, PR labels, release tags, or other repository-specific conventions.&lt;/p&gt;

&lt;p&gt;ChangelogGenie takes a simpler approach: give it a GitHub repository and an explicit calendar date range, and it reads the commits in that interval and produces a deterministic technical changelog.&lt;/p&gt;

&lt;p&gt;It does not modify the repository.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;p&gt;ChangelogGenie:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;works with ordinary Git commits — no Conventional Commits required;&lt;/li&gt;
&lt;li&gt;categorizes changes into features, bug fixes, performance, documentation, maintenance, dependencies, CI/CD, refactoring, breaking changes, and other technical categories;&lt;/li&gt;
&lt;li&gt;records the requested date range and the actual commit date range;&lt;/li&gt;
&lt;li&gt;preserves commit metadata and links to the source commits;&lt;/li&gt;
&lt;li&gt;runs read-only;&lt;/li&gt;
&lt;li&gt;does not create commits, modify files in the repository, or open pull requests.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The GitHub Action generates a Markdown file inside the workflow. A workflow can then upload that file as an artifact or use it in downstream processing.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real repository validation
&lt;/h2&gt;

&lt;p&gt;I tested the released Action against the public &lt;code&gt;outline/outline&lt;/code&gt; repository for March 15–18, 2026.&lt;/p&gt;

&lt;p&gt;It collected &lt;strong&gt;21 public commits&lt;/strong&gt; and generated a categorized Markdown changelog.&lt;/p&gt;

&lt;p&gt;The actual generated output is persisted in the repository so it can be inspected directly:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/Ubuntu-123/changeloggenie-prototype/blob/main/examples/outline-v1.6.1-changelog.md" rel="noopener noreferrer"&gt;https://github.com/Ubuntu-123/changeloggenie-prototype/blob/main/examples/outline-v1.6.1-changelog.md&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Quick Start
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
yaml
- name: Generate changelog
  uses: Ubuntu-123/changeloggenie-prototype@v0.1.7
  with:
    owner: ${{ github.repository_owner }}
    repo: ${{ github.event.repository.name }}
    start_date: "2026-08-01"
    end_date: "2026-08-31"
    version: "draft"
    output_path: "changelog-output.md"
    github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Upload changelog artifact
  uses: actions/upload-artifact@v4
  with:
    name: changelog-output
    path: changelog-output.md

Current limitations

The categorization is deterministic and pattern-based rather than semantic.

The Free GitHub Action is intentionally narrow: it produces the technical changelog but does not decide what should become customer-facing release communication.

I prefer keeping that boundary explicit rather than hiding editorial decisions behind automatic rewriting.

Links

GitHub:
https://github.com/Ubuntu-123/changeloggenie-prototype

GitHub Marketplace:
https://github.com/marketplace/actions/changeloggenie

The project is MIT licensed.

Feedback is especially useful on the generated format, categorization, and whether this kind of read-only workflow fits real release processes.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>showdev</category>
      <category>githubactions</category>
      <category>opensource</category>
      <category>python</category>
    </item>
  </channel>
</rss>
