Skip to content

Commit 2032c77

Browse files
committed
Include First Timer Welcome message
1 parent 203afa0 commit 2032c77

1 file changed

Lines changed: 42 additions & 0 deletions

File tree

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Welcome First Timers
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
pull_request_target:
8+
types:
9+
- opened
10+
11+
permissions:
12+
issues: write
13+
pull-requests: write
14+
15+
jobs:
16+
greet:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Drop a welcome note
20+
uses: actions/first-interaction@v1
21+
with:
22+
repo-token: ${{ secrets.GITHUB_TOKEN }}
23+
issue-message: |
24+
👋 **Welcome to notes.gobinath.com!**
25+
26+
Thanks for opening your first issue — the certification vault is better because of you. A couple of friendly pointers while you're here:
27+
28+
- Peek at our [CONTRIBUTING.md](CONTRIBUTING.md) for formatting tips and the fast path through templates.
29+
- Call out which exam, domain, or resource needs love so we can jump in quickly.
30+
- Screenshots, links, or repro steps (if it's a bug) keep the study notes extra sharp.
31+
32+
Appreciate you taking the time to help future learners. 🙌
33+
pull-request-message: |
34+
🚀 **First PR vibes!**
35+
36+
Thank you for your inaugural contribution to notes.gobinath.com. Before a maintainer reviews it, double-check the essentials:
37+
38+
- `npm install` (once) and `npm run docs:build` help catch broken links or markdown issues locally.
39+
- Reference the relevant certification file(s) in your description so reviewers can follow along.
40+
- Add screenshots, diagrams, or context if you touched visual assets in `public/` or `resources/`.
41+
42+
Can't wait to celebrate this merge with you — welcome aboard! 🎉

0 commit comments

Comments
 (0)