From 13bdf8eda447ea7fc37c7f3d9c37ce2efb24c050 Mon Sep 17 00:00:00 2001 From: Jonathan Clem Date: Thu, 29 Aug 2019 19:03:21 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2a8b670..00e8af7 100644 --- a/README.md +++ b/README.md @@ -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