You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: Checkout repo (optional but avoids errors)
14
+
uses: actions/checkout@v4
15
+
16
+
- name: Comment on the new issue
17
+
env:
18
+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19
+
ISSUE_URL: ${{ github.event.issue.html_url }}
20
+
ISSUE_NUMBER: ${{ github.event.issue.number }}
21
+
run: |
22
+
gh issue comment "$ISSUE_NUMBER" --body $'**Thanks for opening this issue.**\n\nYou can help us to fix this issue faster by opening a pull request. See our [Contribution Guide](https://github.com/opensearch-project/.github/blob/main/CONTRIBUTING.md) if this is your first time contributing. 🙏'
0 commit comments