Skip to content

docs: Add Comprehensive README Documentation #7

docs: Add Comprehensive README Documentation

docs: Add Comprehensive README Documentation #7

Workflow file for this run

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!*