mirror of
https://github.com/actions/github-script.git
synced 2026-02-08 03:57:27 +00:00
Update README.md
This commit is contained in:
parent
fa728aff45
commit
13bdf8eda4
1 changed files with 2 additions and 2 deletions
|
|
@ -27,7 +27,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
github-token: ${{github.token}}
|
github-token: ${{github.token}}
|
||||||
script: |
|
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
|
### Apply a label to an issue
|
||||||
|
|
@ -44,7 +44,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
github-token: ${{github.token}}
|
github-token: ${{github.token}}
|
||||||
script: |
|
script: |
|
||||||
await github.issues.addLabels({...context.issue, labels: ['Triage']})
|
github.issues.addLabels({...context.issue, labels: ['Triage']})
|
||||||
```
|
```
|
||||||
|
|
||||||
### Welcome a first-time contributor
|
### Welcome a first-time contributor
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue