From 0c46b09bbfc54591cdff1c8aec162e04b6488e51 Mon Sep 17 00:00:00 2001 From: Kevin Chisholm Date: Thu, 18 May 2023 13:01:06 -0500 Subject: [PATCH] Add configuration for automating release notes (flutter/engine#42132) GitHub's automated changelog generation allows teams to setup a configuration file to determine how these changelogs will be generated. A similar file is available in flutter/flutter for release note generation. As tags have been added to flutter/engine, we now have the ability to generate release notes in the same fashion. --- engine/src/flutter/.github/release.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 engine/src/flutter/.github/release.yml diff --git a/engine/src/flutter/.github/release.yml b/engine/src/flutter/.github/release.yml new file mode 100644 index 00000000000..a01b0b92cc1 --- /dev/null +++ b/engine/src/flutter/.github/release.yml @@ -0,0 +1,22 @@ +changelog: + exclude: + authors: + - skia-flutter-autoroll + - dependabot + categories: + - title: Impeller + labels: + - impeller + - title: Android + labels: + - platform-android + - title: iOS + labels: + - platform-ios + - title: Web + labels: + - platform-web + - title: Desktop + labels: + - platform-windows + - platform-macos