-
-
Notifications
You must be signed in to change notification settings - Fork 387
Added the Auto Reply Bot for new issues. #491
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,28 @@ | ||||||
| name: Auto-Reply to New Issues | ||||||
|
|
||||||
| on: | ||||||
| issues: | ||||||
| types: [opened] | ||||||
|
|
||||||
| permissions: | ||||||
| issues: write | ||||||
|
|
||||||
| jobs: | ||||||
| post-welcome-comment: | ||||||
| name: Post Welcome Comment | ||||||
| runs-on: ubuntu-latest | ||||||
| steps: | ||||||
| - name: Post welcome comment on new issue | ||||||
| uses: actions/github-script@v7 | ||||||
| with: | ||||||
| script: | | ||||||
| const message = `Thank you for raising this issue! Our team will review it soon. | ||||||
|
|
||||||
| For more queries or discussions or approval of requests, please join the Discord server for further discussion: [Discord Link](https://discord.com/invite/Yn9g6KuWyA)`; | ||||||
|
||||||
| For more queries or discussions or approval of requests, please join the Discord server for further discussion: [Discord Link](https://discord.com/invite/Yn9g6KuWyA)`; | |
| For more queries or discussions or approval of requests, please join the Discord server for further discussion: [Discord Link](https://discord.com/invite/Yn9g6KuWyA)`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pin the action to a specific commit SHA instead of a mutable tag to prevent supply-chain risks. Example: uses: actions/github-script@<exact_commit_sha> (use the commit corresponding to v7 from the action's releases).