From 6a61fd98ff02f6d480eecdd75b17b1b680827704 Mon Sep 17 00:00:00 2001 From: Sebastian Zivota Date: Fri, 8 Aug 2025 19:08:53 +0200 Subject: [PATCH] ci(changelog): Allow skipping changelog with label As of https://github.com/getsentry/github-workflows/pull/94 the `danger` workflow supports skipping the changelog check with a `skip-changelog` label. To make this work the `danger` job needs to run when a PR is labeled or unlabeled. --- .github/workflows/danger.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/danger.yml b/.github/workflows/danger.yml index e24696d75..4b3deb035 100644 --- a/.github/workflows/danger.yml +++ b/.github/workflows/danger.yml @@ -2,7 +2,7 @@ name: Danger on: pull_request: - types: [opened, synchronize, reopened, edited, ready_for_review] + types: [opened, synchronize, reopened, edited, ready_for_review, labeled, unlabeled] jobs: danger: