-
-
Notifications
You must be signed in to change notification settings - Fork 1
81 lines (58 loc) · 2.95 KB
/
greetings.yml
File metadata and controls
81 lines (58 loc) · 2.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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!*