Update README.md

This commit is contained in:
Jonathan Clem
2019-08-29 19:03:21 -04:00
committed by GitHub
parent fa728aff45
commit 13bdf8eda4

View File

@@ -27,7 +27,7 @@ jobs:
with:
github-token: ${{github.token}}
script: |
await github.issues.createComment({...context.issue, body: '👋 Thanks for reporting!'})
github.issues.createComment({...context.issue, body: '👋 Thanks for reporting!'})
```
### Apply a label to an issue
@@ -44,7 +44,7 @@ jobs:
with:
github-token: ${{github.token}}
script: |
await github.issues.addLabels({...context.issue, labels: ['Triage']})
github.issues.addLabels({...context.issue, labels: ['Triage']})
```
### Welcome a first-time contributor