From 76bc6bb6bcbb4b44bc783ff4618800ec94457b98 Mon Sep 17 00:00:00 2001 From: Kathleen Carter <163005214+eKathleenCarter@users.noreply.github.com> Date: Mon, 28 Oct 2024 15:44:57 -0400 Subject: [PATCH] fix double/single quote issue --- .github/workflows/labe-predicate-changes.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/labe-predicate-changes.yml b/.github/workflows/labe-predicate-changes.yml index 0dcf129..42dae3b 100644 --- a/.github/workflows/labe-predicate-changes.yml +++ b/.github/workflows/labe-predicate-changes.yml @@ -33,7 +33,7 @@ jobs: g = Github('${{ secrets.GITHUB_TOKEN }}') repo = g.get_repo('${{ github.repository }}') - if "issue" in github.event: + if 'issue' in github.event: item = repo.get_issue(number=github.event.issue.number) is_issue = True else: