Thinking on that project #127
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: Greetings | |
| on: [pull_request_target, issues] | |
| jobs: | |
| greeting: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| # https://github.com/actions/first-interaction | |
| - uses: actions/first-interaction@v1 | |
| with: | |
| repo-token: ${{ secrets.GH_TOKEN }} | |
| issue-message: "Thank you for opening an issue!" | |
| pr-message: "Hi @${{ github.actor }},\n\nThank you for opening this pull request! Your contribution is greatly appreciated. π\n\n### What Happens Next?\n- A maintainer will review your changes soon.\n- You might receive feedback or suggestions to improve your PR.\n- Once approved, your code will be merged into the project. π―\n\nIf you have any questions or need assistance, feel free to ask here. We're here to help! π\n\nThanks for being a part of our community and helping us grow. π\n\nβ _The Team_ π\n\n" |