From b317fe4579c5b7733732d6d2636c8331be36e174 Mon Sep 17 00:00:00 2001 From: Jed Fox Date: Thu, 1 Jun 2023 15:34:50 -0400 Subject: [PATCH] =?UTF-8?q?Fix=20=E2=80=9CRelease=20notes=E2=80=9D=20actio?= =?UTF-8?q?n,=20attempt=202?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release-notes.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-notes.yml b/.github/workflows/release-notes.yml index 9f2f695866f..c8e6b9896cd 100644 --- a/.github/workflows/release-notes.yml +++ b/.github/workflows/release-notes.yml @@ -11,8 +11,8 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Check release notes - if: startsWith(github.head_ref, 'refs/heads/release/') == false + if: startsWith(github.head_ref, 'release/') == false uses: actualbudget/actions/release-notes/check@main - name: Generate release notes - if: startsWith(github.head_ref, 'refs/heads/release/') == true + if: startsWith(github.head_ref, 'release/') == true uses: actualbudget/actions/release-notes/generate@main