-
-
Notifications
You must be signed in to change notification settings - Fork 384
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
Conversation
Added the workflow for auto message replies.
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.
Pull Request Overview
Adds a GitHub Actions workflow that automatically comments on newly opened issues with a standard welcome/triage message.
- Introduces a new workflow triggered on issues.opened
- Uses actions/github-script to post a predefined comment
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Copilot
AI
Oct 3, 2025
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.
The second line of the message is indented within the template literal, which will render as a code block in GitHub Markdown (4+ leading spaces). Remove the indentation inside the template string or build the message with explicit \n to avoid unintended formatting. For example: const message = 'Thank you for raising this issue! Our team will review it soon.\n\nFor more queries or discussions or approval of requests, please join the Discord server for further discussion: Discord Link';
Copilot
AI
Oct 3, 2025
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).
@DhanushNehru If there's any changes you'd like, I'm here to help.
PR Title
Auto-Reply bot for every new issue.
Summary
Auto-Reply bot replies with
to every new issue posted.
Description
Created and implemented the
.github/workflows/issue-auto-reply.ymlfile.Resolves #490
The changes are as follows:
New file added.
No changes.
Checks
Tested the workflow implemented
in the repository
in the PR
Thank You,
Devansh