docs: Add Comprehensive README Documentation #7
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: | |
| name: Greet First-Time Contributors | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Greet on first issue | |
| if: github.event_name == 'issues' | |
| uses: actions/first-interaction@v1 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| issue-message: | | |
| π **Welcome to ENV Storage Manager!** | |
| Thank you for opening your first issue! We appreciate you taking the time to contribute to our project. | |
| ### What happens next? | |
| - π·οΈ A maintainer will review and label your issue | |
| - π¬ We may ask for additional information | |
| - π― If accepted, the issue will be added to our backlog | |
| ### While you wait | |
| - π Check out our [Contributing Guidelines](https://github.com/${{ github.repository }}/blob/main/CONTRIBUTING.md) | |
| - π€ Read our [Code of Conduct](https://github.com/${{ github.repository }}/blob/main/CODE_OF_CONDUCT.md) | |
| - π‘ Browse [existing issues](https://github.com/${{ github.repository }}/issues) you might want to work on | |
| ### Want to work on this? | |
| If you'd like to work on this issue yourself, let us know in the comments! | |
| Happy coding! π | |
| - name: Greet on first PR | |
| if: github.event_name == 'pull_request_target' | |
| uses: actions/first-interaction@v1 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| pr-message: | | |
| π **Congratulations on your first Pull Request!** | |
| Thank you for contributing to ENV Storage Manager! This is an exciting moment for both you and our project. | |
| ### What happens next? | |
| - π Our CI/CD pipeline will run automated checks | |
| - π A maintainer will review your code | |
| - π¬ We may request changes or ask questions | |
| - β Once approved, your PR will be merged! | |
| ### Tips for success | |
| - β Make sure all CI checks pass | |
| - π Respond to review comments promptly | |
| - π Keep your branch up to date with main | |
| - π Follow our [Contributing Guidelines](https://github.com/${{ github.repository }}/blob/main/CONTRIBUTING.md) | |
| ### Need help? | |
| - π¬ Comment on this PR with questions | |
| - π Check our [documentation](https://github.com/${{ github.repository }}/blob/main/README.md) | |
| - π€ Join our [Discussions](https://github.com/${{ github.repository }}/discussions) | |
| We're excited to have you as part of our community! π | |
| --- | |
| *P.S. If this is for Hacktoberfest π, make sure your PR follows the quality guidelines to be eligible!* |