1
0
Fork 0

Fix code in docs

pull/290/head
Thomas Boop 2020-01-08 14:29:29 -05:00
parent 99fffe8b48
commit e6c3ae7c3a
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ There may be cases where multiple events have a field you need. For example, we
```js
const github = require('@actions/github');
const payload = github.context.payload
if ("issue" in payload) {
if (payload && "issue" in payload) {
core.info(`The issue number is: ${JSON.stringify(payload.issue.number)}`)
}
```