TASK: Add your own method in the Person class
#493
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: | |
| - uses: actions/first-interaction@v1 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| issue-message: >- | |
| Thanks for opening your first issue on this repository! Make sure you've read our | |
| [contributing guidelines](https://github.com/TheGittyPerson/ThePerson/blob/main/.github/CONTRIBUTING.md) | |
| — it's very important to us. | |
| Key things to remember when contributing to this repo: | |
| - Avoid touching others' code when possible | |
| - Avoid using AI to generate code, comments, or issue/PR descriptions | |
| pr-message: >- | |
| Thanks for opening your first PR on this repository! Make sure you've read our | |
| [contributing guidelines](https://github.com/TheGittyPerson/ThePerson/blob/main/.github/CONTRIBUTING.md) | |
| — it's very important to us. | |
| Key things to remember when contributing to this repo: | |
| - Avoid touching others' code when possible | |
| - Avoid using AI to generate code, comments, or issue/PR descriptions |