From 8ae6ae3ebc511bf4c2df6d915b3af61d6f20c2cc Mon Sep 17 00:00:00 2001 From: Nate Parsons Date: Mon, 13 May 2024 13:00:51 -0500 Subject: [PATCH] try to fix release notes update --- .github/workflows/release_notes_updated.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release_notes_updated.yaml b/.github/workflows/release_notes_updated.yaml index 3ea6d9f68..b1a68ab5f 100644 --- a/.github/workflows/release_notes_updated.yaml +++ b/.github/workflows/release_notes_updated.yaml @@ -23,8 +23,7 @@ jobs: min_dep_update = '^min-dep-update-[a-f0-9]{7}$' regex = main, release, backport, dep_update, min_dep_update patterns = list(map(compile, regex)) - ref = "$REF" - is_dev = not any(pattern.match(ref) for pattern in patterns) + is_dev = not any(pattern.match($REF) for pattern in patterns) print('::set-output name=is_dev::' + str(is_dev)) - if: ${{ steps.branch.outputs.is_dev == 'True' }} name: Checkout repository