Skip to content

Commit fee237d

Browse files
Enhance greeting messages for first issues and PRs
Updated the greetings workflow to provide detailed messages for first issues and pull requests.
1 parent 6204666 commit fee237d

1 file changed

Lines changed: 49 additions & 0 deletions

File tree

.github/workflows/greetings.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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.

0 commit comments

Comments
 (0)