-
-
Notifications
You must be signed in to change notification settings - Fork 668
37 lines (27 loc) · 1.61 KB
/
first-interaction.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
29
30
31
32
33
34
35
36
37
name: First interaction
on:
- pull_request_target
- issues
jobs:
build:
runs-on: ubuntu-latest
permissions:
pull-requests: write
issues: write
steps:
- uses: actions/first-interaction@v1
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
issue-message: |
Thank you for contributing an issue! 🙏
**Welcome to the ITK community!** 🤗👋☀️
We are glad you are here and appreciate your contribution. Please keep in mind our [community participation guidelines](https://github.com/InsightSoftwareConsortium/ITK/blob/master/CODE_OF_CONDUCT.md). 📜
Also, please check [existing open issues](https://github.com/InsightSoftwareConsortium/ITK/issues) and consider discussion on the [ITK Discourse](https://discourse.itk.org). 📖
This is an automatic message. Allow for time for the ITK community to be able to read the issue and comment on it.
pr-message: |
Thank you for contributing a pull request! 🙏
**Welcome to the ITK community!** 🤗👋☀️
We are glad you are here and appreciate your contribution. Please keep in mind our [community participation guidelines](https://github.com/InsightSoftwareConsortium/ITK/blob/master/CODE_OF_CONDUCT.md). 📜
More support and guidance on the contribution process can be found in our [contributing guide](https://github.com/InsightSoftwareConsortium/ITK/blob/master/CONTRIBUTING.md). 📖
This is an automatic message. Allow for time for the ITK community to be able to read the pull request and comment
on it.