We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdd5ba1 commit 155b871Copy full SHA for 155b871
.github/actions/comment-on-issue/action.yml
@@ -5,4 +5,11 @@ runs:
5
env:
6
ISSUE_NUMBER: ${{ inputs.issue_number }}
7
with:
8
- script-file: .github/scripts/comment.js
+ script: |
9
+ const issue_number = parseInt(process.env.ISSUE_NUMBER, 10);
10
+
11
+ await github.issues.createComment({
12
+ ...context.repo,
13
+ issue_number,
14
+ body: "👋, Thank you for opening this issue! We will look into it as soon as possible."
15
+ });
0 commit comments