From 8d8ce7dbc98a3ec3ca39fdb8162e1a53e3a9d10b Mon Sep 17 00:00:00 2001 From: GREENRAT-K405 Date: Sat, 14 Feb 2026 00:54:29 +0530 Subject: [PATCH] add greetings bot to mediator --- .github/.workflows/greetings.yml | 41 ++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/.workflows/greetings.yml diff --git a/.github/.workflows/greetings.yml b/.github/.workflows/greetings.yml new file mode 100644 index 0000000..b2d47eb --- /dev/null +++ b/.github/.workflows/greetings.yml @@ -0,0 +1,41 @@ +name: Greetings + +on: + pull_request_target: + types: [opened] + issues: + types: [opened] + +jobs: + greeting: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: actions/first-interaction@v3 + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + + issue_message: | + 👋 Welcome to the CONTROL-CORE Project, @${{ github.actor }}! Thank you for opening your first issue in mediator. + We appreciate your contribution to the organization and will review it as soon as possible. + + Before we get started, please check out these resources: + - 📚 [Project Documentation](https://control-core.readthedocs.io/) + - 📘 [Contribution Guidelines](https://github.com/ControlCore-Project/concore/blob/main/CONTRIBUTING.md) + - 📜 [Code of Conduct](https://github.com/ControlCore-Project/concore/blob/main/CODE_OF_CONDUCT.md) + + pr_message: | + 🎉 Welcome aboard, @${{ github.actor }}! Thank you for your first pull request in mediator. + + Please ensure that you are contributing to the **dev** branch. + + Your contribution means a lot to us. We'll review it shortly. + + Please ensure you have reviewed our: + - 📚 [Project Documentation](https://control-core.readthedocs.io/) + - 📘 [Contribution Guidelines](https://github.com/ControlCore-Project/concore/blob/main/CONTRIBUTING.md) + - 📜 [Code of Conduct](https://github.com/ControlCore-Project/concore/blob/main/CODE_OF_CONDUCT.md) + + If you have any questions, feel free to ask. Happy coding!