From d51dfaa9da0bdab35a49fc66296879692d0dfe45 Mon Sep 17 00:00:00 2001 From: Passion4Architecture Date: Mon, 6 Jul 2026 09:20:24 +0530 Subject: [PATCH] Add GitHub Actions workflow for auto commenting --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..271911e --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +name: Auto Comment Bot +on: + issues: + types: [opened] + pull_request: + types: [opened] + +jobs: + comment: + runs-on: ubuntu-latest + steps: + - name: Auto Comment + uses: wow-actions/auto-comment@v1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + issuesOpened: | + 👋 @${{ github.actor }} Thank you for raising an issue! The team will look into this as soon as possible. + pullRequestOpened: | + 🎉 @${{ github.actor }} Thank you for your pull request! We will review your code shortly.