Commit #Correctly setting the WrbNZ configuration. (#8875)" breaks tests #22
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
| # Greet first-time contributors. | |
| name: Greet First-Time Contributors | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| issues: | |
| types: | |
| - opened | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| id-token: write | |
| contents: read | |
| jobs: | |
| greeting: | |
| name: Greet First-Time Contributors | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| with: | |
| issue_message: | | |
| π Thanks for opening your first issue here! Please make sure you filled out the template with as much detail as possible. We appreciate that you took the time to contribute! | |
| Please make sure you read our [Contributing Guide](https://github.com/GenericMappingTools/gmt/blob/master/CONTRIBUTING.md) and abide by our [Code of Conduct](https://github.com/GenericMappingTools/.github/blob/main/CODE_OF_CONDUCT.md). | |
| pr_message: | | |
| π Thanks for opening this pull request! π | |
| Please make sure you read our [Contributing Guide](https://github.com/GenericMappingTools/gmt/blob/master/CONTRIBUTING.md) and abide by our [Code of Conduct](https://github.com/GenericMappingTools/.github/blob/main/CODE_OF_CONDUCT.md). | |
| A few things to keep in mind: | |
| * If you need help writing tests, take a look at the existing ones for inspiration. If you don't know where to start, let us know and we'll walk you through it. | |
| * All new features should be documented. It helps to write the comments for your functions, describing what they do and **all** arguments, before writing the code. This will help you think about your code design and results in better code. | |
| * We are grateful that you put in the effort to do this! π | |
| We hope that the contributing process will be a good experience for you. Please let us know if there is any way that it could be improved. |