From 4daf1f4c57317424358509c5f36cc55768fd1aea Mon Sep 17 00:00:00 2001 From: per1234 Date: Mon, 9 Aug 2021 04:05:08 -0700 Subject: [PATCH] [skip changelog] Add skip changelog prefix to Dependabot workflow update commits Dependabot is configured to submit pull requests for updates to the GitHub Actions actions used in the repository's workflows whenever a new version is available. These commits will not result in any user facing changes and so should not be mentioned in the release changelog. The changelog generation system automatically excludes any commit that has the `[skip changelog]` prefix on its message title. Adding this changelog to the commits generated by Dependabot will save the release manager time when cleaning up the raw changelog. --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bf52cd2e1fa..fb90a1c2193 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,5 +9,7 @@ updates: directory: / # Check the repository's workflows under /.github/workflows/ schedule: interval: daily + commit-message: + prefix: "[skip changelog] " labels: - "topic: dependencies"