From 8f602acfd8ee69ef38788722e836fd8aef99aa29 Mon Sep 17 00:00:00 2001 From: Naheel Muhammed Date: Mon, 9 Mar 2026 16:18:49 +0530 Subject: [PATCH] Refine GitHub Actions greetings for issues and PRs Updated greetings.yml to specify event types for issues and pull requests. Enhanced issue and PR messages for better formatting. --- .github/workflows/greetings.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 7771688..1353fe6 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -1,6 +1,10 @@ name: 🌌 BeyteFlow Welcome -on: [pull_request_target, issues] +on: + issues: + types: [opened] + pull_request_target: + types: [opened] jobs: greeting: @@ -12,5 +16,13 @@ jobs: - uses: actions/first-interaction@v1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - issue-message: "⚡ **Connection Established!** Thank you for opening your first issue in the BeyteFlow ecosystem. Our core maintainers will intercept this stream shortly." - pr-message: "🚀 **Incoming Transmission!** Welcome to the flow. Your first Pull Request has been received. Our automated diagnostics are now scanning your bytes." + issue-message: | + ⚡ **Connection Established!** + Thank you for opening your first issue in the **BeyteFlow ecosystem**. + Our core maintainers will intercept this stream shortly. + + pr-message: | + 🚀 **Incoming Transmission!** + Welcome to the flow. + Your first Pull Request has been received. + Our automated diagnostics are now scanning your bytes.