Skip to content

Commit f070abc

Browse files
committed
chore: fix discord notification
1 parent c6b5186 commit f070abc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/discord-notification.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
args: |-
2424
A new PR {{ EVENT_PAYLOAD.pull_request.title }}
2525
26-
by {{ EVENT_PAYLOAD.sender}}
26+
by {{ EVENT_PAYLOAD.sender.login}}
2727
2828
at {{ EVENT_PAYLOAD.pull_request.html_url }}
2929
- uses: "Ilshidur/action-discord@0.3.0"
@@ -32,8 +32,8 @@ jobs:
3232
if: ${{ github.event_name == 'issues' }}
3333
with:
3434
args: |-
35-
A new issue {{ EVENT_PAYLOAD.issues.title }}
35+
A new issue {{ EVENT_PAYLOAD.issue.title }}
3636
37-
by {{ EVENT_PAYLOAD.sender}}
37+
by {{ EVENT_PAYLOAD.sender.login}}
3838
39-
at {{ EVENT_PAYLOAD.issues.html_url }}
39+
at {{ EVENT_PAYLOAD.issue.html_url }}

0 commit comments

Comments
 (0)