Bugs in current deployment #15
This file contains 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: Greetings | |
on: [pull_request_target, issues] | |
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: | | |
### Welcome to the Project, @{{ sender.login }}! 👋 | |
Thank you for opening your first issue with us. We appreciate your contribution and are excited to work with you. Please make sure to provide all necessary details in your issue to help us address it effectively. | |
Our team will review your submission and provide feedback as soon as possible. If you have any questions, feel free to ask. We are here to help! | |
Best regards, | |
**• SERVER X** | |
pr-message: | | |
### Welcome to the Project, @{{ sender.login }}! 👋 | |
Thank you for submitting your first pull request. We value your contribution and are excited to review your changes. Please ensure your PR complies with our contribution guidelines and that all checks pass. | |
Our team will review your pull request and provide feedback promptly. If you need any assistance, don't hesitate to reach out. We are here to support you! | |
Best regards, | |
**• SERVER X** |