Matt Glaman Automates Drupal Release Notes in Dependabot PRs with GitHub Action
In a blog post published on 9 December 2025, Matt Glaman unveiled a new GitHub Action that enhances Drupal module update workflows in Dependabot. The tool, mglaman/dependabot-drupal-mrn, automatically fetches and appends release notes from drupal-mrn.dev into pull request descriptions — making it easier for developers to assess the impact of updates directly from the PR itself.
Traditionally, Dependabot works well for packages hosted on GitHub, as it pulls in release metadata. But for modules hosted on git.drupalcode.org, the update lacks context — reviewers have to manually navigate to the module's Drupal.org page and locate release notes. This gap slows down or discourages proper code review.
Glaman’s action solves this by detecting updated Drupal packages in a PR, querying the drupal-mrn API for the corresponding release data, and injecting those notes into the PR body using the GitHub API. This eliminates the need to manually track changelogs and aligns the review process more closely with modern DevOps practices.
The implementation is straightforward: developers can add a workflow YAML file that triggers only for PRs created by Dependabot. The action parses the diff, queries release note data, and updates the PR in real-time. It’s particularly valuable for modules like Webform, where version changes can imply major functional shifts.
To start using it, developers can visit the GitHub Marketplace page or follow the setup instructions in the original blog.


