We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d8459c commit ba7d609Copy full SHA for ba7d609
.github/workflows/first-interaction.yml
@@ -0,0 +1,27 @@
1
+name: first-interaction
2
+
3
+on:
4
+ issues:
5
+ types: [opened]
6
+ pull_request:
7
+ branches: [main]
8
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