diff --git a/.github/workflows/populate-issue-list.yml b/.github/workflows/populate-issue-list.yml index f06f2ff..e013961 100644 --- a/.github/workflows/populate-issue-list.yml +++ b/.github/workflows/populate-issue-list.yml @@ -30,10 +30,10 @@ jobs: uses: peter-evans/create-or-update-comment@v2 with: issue-number: ${{ steps.find-issue-number.outputs.group1 }} - body: ${{ format('### {0}\n - \#{1}', inputs.listtype, github.event.issue.number) }} + body: ${{ format('### {0}', inputs.listtype) }} - name: Update list if: steps.find-issue-number.outputs.group1 != '' && steps.find-list.outputs.comment-id != '' && !contains(steps.find-list.outputs.comment-body, format('#{0}', github.event.issue.number)) uses: peter-evans/create-or-update-comment@v2 with: comment-id: ${{ steps.find-list.outputs.comment-id }} - body: ${{ format(' - \#{0}', github.event.issue.number) }} + body: ${{ format(' - [ ] \#{0}', github.event.issue.number) }}