From 9d027bc76c1ec43c60ee6b2babe577c76742acfe Mon Sep 17 00:00:00 2001 From: Magnus Persson Date: Tue, 20 Jan 2026 13:37:38 +0100 Subject: [PATCH] If we "fix up" changesets, we dont want to create new changesets --- .github/workflows/dependabot-changesets.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dependabot-changesets.yml b/.github/workflows/dependabot-changesets.yml index 0907524..a4c0cf3 100644 --- a/.github/workflows/dependabot-changesets.yml +++ b/.github/workflows/dependabot-changesets.yml @@ -1,7 +1,12 @@ # Add changesets for Dependabot PRs name: Dependabot Changesets on: - pull_request: {} + pull_request: + # Trigger on creation (opened) and updates (synchronize) + types: [opened, synchronize, reopened] + # Do not trigger if ONLY files in .changesets are changed + paths-ignore: + - '.changesets/**' permissions: contents: read