From b40674dbdea7e91a896b37e2ef2886b8f67acf06 Mon Sep 17 00:00:00 2001 From: Martin Hochel Date: Mon, 19 Sep 2022 16:21:21 +0200 Subject: [PATCH] ci(github): fix invalid json string in issues.yml --- .github/workflows/issues.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml index 79354eb06e3d3..1897dddb728cb 100644 --- a/.github/workflows/issues.yml +++ b/.github/workflows/issues.yml @@ -12,10 +12,10 @@ jobs: with: title-or-body: 'body' parameters: > - '[ + '`[ {"keywords": ["@fluentui/react-northstar"], "labels": ["Fluent UI react-northstar (v0)"]}, {"keywords": ["@fluentui/react"], "labels": ["Fluent UI react (v8)"]}, {"keywords": ["@fluentui/react-components"], "labels": ["Fluent UI react-components (v9)"]}, {"keywords": ["@fluentui/web-components"],"labels": ["web-components"],"assignees": ["@chrisdholt"]} - ]' + ]`' github-token: '${{ secrets.GITHUB_TOKEN }}'