Skip to content

Commit f6c921f

Browse files
Add greetings workflow to welcome first-time contributors
1 parent 4b1bdf4 commit f6c921f

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.github/workflows/greetings.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Greetings
2+
3+
on:
4+
issues:
5+
types: [opened]
6+
pull_request:
7+
types: [opened]
8+
9+
permissions:
10+
issues: write
11+
pull-requests: write
12+
contents: read
13+
14+
jobs:
15+
welcome:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Welcome first-time contributor
19+
uses: actions/first-interaction@v3
20+
with:
21+
issue-opened-msg: |
22+
Hi @${{ github.actor }} :wave: — thank you for opening your first issue in this repository!
23+
24+
**A few tips to get your issue processed quickly**
25+
* Please add a minimal reproduction or example (if relevant).
26+
* Link to any related issue or PR.
27+
* See our contribution guide: https://github.com/openml/openml-python/blob/main/CONTRIBUTING.md
28+
29+
If you're new to contributing, welcome — maintainers will review this shortly. 🙂
30+
pr-opened-msg: |
31+
Hi @${{ github.actor }} :tada: — thanks for your first pull request to **openml-python**!
32+
33+
**To help reviewers:**
34+
* Please describe the change & why it’s needed in the PR description.
35+
* Add tests where appropriate and run the test suite locally (see README).
36+
* Reference any related issue with `closes #<issue-number>`.
37+
38+
Read our contribution guidelines here: https://github.com/openml/openml-python/blob/main/CONTRIBUTING.md

0 commit comments

Comments
 (0)