Skip to content

Commit

Permalink
ci: Fix message format
Browse files Browse the repository at this point in the history
  • Loading branch information
CycleBai committed Aug 3, 2024
1 parent f0c0bd3 commit dcd876a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/issueops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ jobs:
"fields": [
{
"type": "mrkdwn",
"text": "*User* \n <${{ github.event.comment.user.name }}|${{ github.event.comment.user.url }}>"
"text": "*User* \n ${{ github.event.comment.user.name }}"
},
{
"type": "mrkdwn",
"text": "*Issue/PR* \n #<${{ github.event.issue.number }}|>${{ github.event.issue.url }}"
"text": "*Issue/PR* \n #<${{ github.event.issue.number }}"
}
]
},
Expand All @@ -60,7 +60,7 @@ jobs:
"text": "Click Me"
},
"value": "link",
"url": "${{ github.event.comment.url }}",
"url": "${{ github.event.comment.html_url }}",
"action_id": "button-action"
}
}
Expand Down

0 comments on commit dcd876a

Please sign in to comment.