-
Notifications
You must be signed in to change notification settings - Fork 3
61 lines (47 loc) · 2.09 KB
/
welcome.yml
File metadata and controls
61 lines (47 loc) · 2.09 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
name: Welcome
on:
issues:
types: [opened]
pull_request_target:
types: [opened]
permissions:
issues: write
pull-requests: write
jobs:
welcome:
name: Welcome New Contributors
runs-on: ubuntu-latest
steps:
- name: Welcome First-Time Issue Creator
uses: actions/first-interaction@v1
if: github.event_name == 'issues'
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: |
**Welcome to Sendable!**
Thank you for opening your first issue!
We appreciate you taking the time to contribute to the project. A maintainer will review your issue soon and provide feedback.
In the meantime, you might want to:
- Check our [Contributing Guide](../CONTRIBUTING.md) for more information
- Join our [Discussions](https://github.com/${{ github.repository }}/discussions) to chat with the community
- Review the [README](../README.md) for project overview and setup instructions
Happy coding!
- name: Welcome First-Time PR Creator
uses: actions/first-interaction@v1
if: github.event_name == 'pull_request_target'
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
pr-message: |
**Welcome to Sendable!**
Thank you for opening your first pull request!
We're excited to review your contribution. Here's what happens next:
1. **Automated checks** will run to verify your code
2. A **maintainer will review** your changes
3. You may receive **feedback or change requests**
4. Once approved, your PR will be **merged**!
**Quick tips:**
- Make sure all CI checks pass
- Respond to any feedback promptly
- Keep your PR focused on a single concern
- Check out our [Contributing Guide](../CONTRIBUTING.md) for best practices
Thank you for contributing!