Skip to content

Commit ba7d609

Browse files
author
Cory Miller
committed
Use first-interaction in the repository
1 parent 1d8459c commit ba7d609

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: first-interaction
2+
3+
on:
4+
issues:
5+
types: [opened]
6+
pull_request:
7+
branches: [main]
8+
types: [opened]
9+
10+
jobs:
11+
check_for_first_interaction:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: actions/first-interaction@main
16+
with:
17+
repo-token: ${{ secrets.GITHUB_TOKEN }}
18+
issue-message: |
19+
Hello! Thank you for filing an issue.
20+
21+
If this is a bug report, please include relevant logs to help us debug the problem.
22+
pr-message: |
23+
Hello! Thank you for your contribution.
24+
25+
If you are fixing a bug, please reference the issue number in the description.
26+
27+
If you are implementing a feature request, please check with the maintainers that the feature will be accepted first.

0 commit comments

Comments
 (0)