-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (29 loc) · 1.07 KB
/
welcome.yml
File metadata and controls
36 lines (29 loc) · 1.07 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
name: 'Welcome New Contributors'
on:
issues:
types: [opened]
pull_request_target:
types: [opened]
permissions:
issues: write
pull-requests: write
jobs:
welcome:
runs-on: ubuntu-latest
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: |
Welcome! 👋 Thanks for opening your first issue in this repository.
We'll review it as soon as possible. In the meantime:
- Check if there's a similar issue already open
- Add as much detail as possible (steps to reproduce, expected behavior, environment)
If you'd like to contribute a fix, PRs are always welcome!
pr-message: |
Welcome! 👋 Thanks for your first pull request in this repository.
A maintainer will review it soon. Please make sure:
- [ ] Your changes are tested
- [ ] Documentation is updated if needed
- [ ] The PR description explains what and why
Thanks for contributing!