File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # .github/workflows/greetings.yml
2+
3+ name : Greetings
4+
5+ on :
6+ issues :
7+ types : [opened]
8+
9+ pull_request_target :
10+ types : [opened]
11+
12+ jobs :
13+ greeting :
14+ runs-on : ubuntu-latest
15+
16+ permissions :
17+ issues : write
18+ pull-requests : write
19+
20+ steps :
21+ - name : Send greeting message
22+ uses : actions/first-interaction@v1
23+
24+ with :
25+ repo-token : ${{ secrets.GITHUB_TOKEN }}
26+
27+ issue-message : |
28+ Thank you for opening your first issue in DevPath.
29+
30+ We appreciate your interest in contributing to the project. Before working on an issue, please make sure to:
31+ - Read the README.md and CONTRIBUTING.md files
32+ - Wait until the issue is assigned to you
33+ - Follow the repository guidelines carefully
34+
35+ If you are new to open source, feel free to ask questions in Discussions.
36+
37+ Happy contributing.
38+
39+ pr-message : |
40+ Thank you for submitting your first pull request to DevPath.
41+
42+ Please ensure that:
43+ - The PR template is fully completed
44+ - All tests are passing
45+ - Your branch follows the naming conventions
46+ - The PR is linked to an existing issue
47+ - Only issue-related changes are included
48+
49+ Our maintainers will review your contribution soon. We appreciate your effort and contribution to DevPath.
You can’t perform that action at this time.
0 commit comments