Rollback #11
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: Greetings | |
| on: | |
| issues: | |
| types: [opened] | |
| pull_request_target: | |
| types: [opened] | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| greeting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Greet First Time Contributors | |
| uses: actions/first-interaction@v3 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| issue_message: > | |
| π Welcome to BrainPy! Thank you for opening your first issue. | |
| We appreciate you taking the time to contribute to the project. A maintainer | |
| will review your issue and respond as soon as possible. | |
| In the meantime, please make sure you've provided all the necessary information | |
| to help us understand and address your issue effectively. | |
| If you're interested in contributing code, check out our | |
| [Contributing Guide](https://github.com/brainpy/BrainPy/blob/master/CONTRIBUTING.md) | |
| for more information on how to get started. | |
| Happy coding! π§ β¨ | |
| pr_message: > | |
| π Congratulations on opening your first pull request in BrainPy! Thank you for | |
| your contribution! | |
| A maintainer will review your changes soon. Please make sure: | |
| - β Your code follows our style guidelines | |
| - β All tests pass | |
| - β Documentation is updated (if applicable) | |
| - β You've filled out the PR template completely | |
| We appreciate your effort in making BrainPy better. If you have any questions, | |
| feel free to ask in the comments. | |
| Welcome to the BrainPy community! π |