From 703a3d522076026f9861106d87a60c9eea793b14 Mon Sep 17 00:00:00 2001 From: South Drifted Date: Fri, 5 Jul 2024 15:54:32 +0000 Subject: [PATCH] [fix] Issue Parser data bug in GitHub actions --- .github/workflows/submit-data.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/submit-data.yml b/.github/workflows/submit-data.yml index 9dc7194..a36eb8e 100644 --- a/.github/workflows/submit-data.yml +++ b/.github/workflows/submit-data.yml @@ -11,19 +11,18 @@ jobs: - uses: actions/checkout@v4 - id: issue-parser - uses: edumserrano/github-issue-forms-parser@v1 + uses: stefanbuck/github-issue-parser@v3 with: - template-filepath: ".github/ISSUE_TEMPLATE/submit-data.yml" - issue-form-body: "${{ github.event.issue.body }}" + template-path: ".github/ISSUE_TEMPLATE/submit-data.yml" - name: Add data to YAML run: | - cat << EOF >> ${{ steps.issue-parser.outputs.parsed-issue.category }}.yml + cat << EOF >> ${{ steps.issue-parser.outputs.issueparser_category }}.yml - name: "${{ github.event.issue.title }}" - author: "${{ steps.issue-parser.outputs.parsed-issue.author }}" + author: "${{ steps.issue-parser.outputs.issueparser_author }}" description: | - ${{ steps.issue-parser.outputs.parsed-issue.description }} - link: "${{ steps.issue-parser.outputs.parsed-issue.link }}" + ${{ steps.issue-parser.outputs.issueparser_description }} + link: "${{ steps.issue-parser.outputs.issueparser_link }}" EOF - uses: peter-evans/create-pull-request@v6 with: