We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01f52c7 commit ba495feCopy full SHA for ba495fe
1 file changed
.github/workflows/mentionsActions.yml
@@ -15,12 +15,13 @@ jobs:
15
- name: "Checkout"
16
uses: actions/checkout@v4
17
- name: "Create Comment"
18
+ if: contains(github.event.comment.body, '@github-actions')
19
uses: actions/github-script@v8
20
with:
21
script: |
22
github.rest.issues.createComment({
23
owner: context.repo.owner,
24
repo: context.repo.repo,
25
issue_number: context.issue.number,
- body: "Hello " + owner
26
+ body: "Hello " + owner + "! Thanks for filing this issue."
27
})
0 commit comments