forked from KathiraveluLab/DHGWorkflow
-
Notifications
You must be signed in to change notification settings - Fork 24
41 lines (32 loc) · 1.69 KB
/
greetings.yml
File metadata and controls
41 lines (32 loc) · 1.69 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
37
38
39
40
41
name: Greetings
on:
pull_request_target:
types: [opened]
issues:
types: [opened]
jobs:
greeting:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/first-interaction@v3
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
issue_message: |
👋 Welcome to the CONTROL-CORE Project, @${{ github.actor }}! Thank you for opening your first issue in concore-editor.
We appreciate your contribution to the organization and will review it as soon as possible.
Before we get started, please check out these resources:
- 📚 [Project Documentation](https://control-core.readthedocs.io/)
- 📘 [Contribution Guidelines](https://github.com/ControlCore-Project/concore/blob/main/CONTRIBUTING.md)
- 📜 [Code of Conduct](https://github.com/ControlCore-Project/concore/blob/main/CODE_OF_CONDUCT.md)
pr_message: |
🎉 Welcome aboard, @${{ github.actor }}! Thank you for your first pull request in concore-editor.
Please ensure that you are contributing to the **dev** branch.
Your contribution means a lot to us. We'll review it shortly.
Please ensure you have reviewed our:
- 📚 [Project Documentation](https://control-core.readthedocs.io/)
- 📘 [Contribution Guidelines](https://github.com/ControlCore-Project/concore/blob/main/CONTRIBUTING.md)
- 📜 [Code of Conduct](https://github.com/ControlCore-Project/concore/blob/main/CODE_OF_CONDUCT.md)
If you have any questions, feel free to ask. Happy coding!