You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To add comment to an issue you need to specify an issue key and a comment in action args, like:
7
8
8
9
`"Hello from GitHub actions" --issue=INC-2`
9
10
10
-
You can interpolate fields from GitHub event which triggered the workflow into a comment body. For example, you can specify pusher name in comment body by including `pusher.name` field from [push](https://developer.github.com/v3/activity/events/types/#pushevent) event:
11
+
You can interpolate fields from GitHub event which triggered the workflow into a comment body. For example, you can specify pusher name in comment body by including `event.pusher.name` field from [push](https://developer.github.com/v3/activity/events/types/#pushevent) event:
11
12
12
-
"{{ pusher.name }} pushed to repository: {{ repository.full_name }}"
13
+
"{{ event.pusher.name }} pushed to repository: {{ event.repository.full_name }}"
0 commit comments