Skip to content

Commit 8f602ac

Browse files
authored
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.
1 parent 8ad3d7c commit 8f602ac

1 file changed

Lines changed: 15 additions & 3 deletions

File tree

.github/workflows/greetings.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: 🌌 BeyteFlow Welcome
22

3-
on: [pull_request_target, issues]
3+
on:
4+
issues:
5+
types: [opened]
6+
pull_request_target:
7+
types: [opened]
48

59
jobs:
610
greeting:
@@ -12,5 +16,13 @@ jobs:
1216
- uses: actions/first-interaction@v1
1317
with:
1418
repo-token: ${{ secrets.GITHUB_TOKEN }}
15-
issue-message: "⚡ **Connection Established!** Thank you for opening your first issue in the BeyteFlow ecosystem. Our core maintainers will intercept this stream shortly."
16-
pr-message: "🚀 **Incoming Transmission!** Welcome to the flow. Your first Pull Request has been received. Our automated diagnostics are now scanning your bytes."
19+
issue-message: |
20+
⚡ **Connection Established!**
21+
Thank you for opening your first issue in the **BeyteFlow ecosystem**.
22+
Our core maintainers will intercept this stream shortly.
23+
24+
pr-message: |
25+
🚀 **Incoming Transmission!**
26+
Welcome to the flow.
27+
Your first Pull Request has been received.
28+
Our automated diagnostics are now scanning your bytes.

0 commit comments

Comments
 (0)