Refine GitHub Actions greetings for issues and PRs #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 🌌 BeyteFlow Welcome | |
| on: | |
| issues: | |
| types: [opened] | |
| pull_request_target: | |
| types: [opened] | |
| jobs: | |
| greeting: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - 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. |