From 773d42b76965cd5c443343d540c1c8fa32afc03f Mon Sep 17 00:00:00 2001 From: Martin Hochel Date: Wed, 21 Sep 2022 12:11:16 +0200 Subject: [PATCH] ci(github): fix invalid json string in issues.yml v2 --- .github/workflows/issues.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml index 1897dddb728cb7..7ca3a414774f40 100644 --- a/.github/workflows/issues.yml +++ b/.github/workflows/issues.yml @@ -11,11 +11,10 @@ jobs: - uses: Naturalclar/issue-action@v2.0.2 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"]} - ]`' + parameters: '[ + {"keywords": ["@fluentui/react-northstar"], "labels": ["Fluent UI react-northstar (v0)"], "assignees": []}, + {"keywords": ["@fluentui/react"], "labels": ["Fluent UI react (v8)"], "assignees": []}, + {"keywords": ["@fluentui/react-components"], "labels": ["Fluent UI react-components (v9)"], "assignees": []}, + {"keywords": ["@fluentui/web-components"],"labels": ["web-components"],"assignees": ["@chrisdholt"]} + ]' github-token: '${{ secrets.GITHUB_TOKEN }}'