-
Notifications
You must be signed in to change notification settings - Fork 7
28 lines (22 loc) · 888 Bytes
/
hello.yml
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
name: Friendly Welcome
on:
issues:
types: [opened]
pull_request_target:
types: [opened]
jobs:
welcome:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: |
Hello! Thank you for filing an issue 🎉.
If this is a 🐞 report, please include relevant logs to help us debug the problem.
pr-message: |
Hello! Thank you for your contribution 🎉👏 .
If you are fixing a bug, please reference the issue number in the description.
If you are implementing a feature request, please check with the maintainers that the feature will be accepted first.
For any PR make sure to include test coverage. Run command `composer test`