Skip to content

Conversation

@devanshsonii
Copy link
Contributor

PR Title

Auto-Reply bot for every new issue.

Summary

Auto-Reply bot replies with

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)

to every new issue posted.

Description

Created and implemented the .github/workflows/issue-auto-reply.yml file.
Resolves #490

The changes are as follows:

New file added.
No changes.

Checks

Tested the workflow implemented

in the repository

  • Made no changes that degrades the functioning of the repository
  • Gave each commit a better title (unlike updated README.md)

in the PR

  • Followed the format of the pull_request_template
  • Made the Pull Request in a small level (for the creator's wellfare)
  • Tested the changes you made

Thank You,

Devansh

@DhanushNehru DhanushNehru requested a review from Copilot October 3, 2025 09:30
Copy link
Contributor

Copilot AI left a 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.

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)`;
Copy link

Copilot AI Oct 3, 2025

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';

Suggested change
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)`;

Copilot uses AI. Check for mistakes.
runs-on: ubuntu-latest
steps:
- name: Post welcome comment on new issue
uses: actions/github-script@v7
Copy link

Copilot AI Oct 3, 2025

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).

Suggested change
uses: actions/github-script@v7
uses: actions/github-script@8a7c6c5e6e6e1e0e2e3e4e5e6e7e8e9e0e1e2e3e

Copilot uses AI. Check for mistakes.
@devanshsonii
Copy link
Contributor Author

@DhanushNehru If there's any changes you'd like, I'm here to help.

@DhanushNehru DhanushNehru merged commit d527e36 into DhanushNehru:main Oct 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

🤖 Add Auto Reply Bot for New Issues

2 participants