Skip to content

Commit 51ab42c

Browse files
authored
Merge pull request #19166 from tacaswell/gha_welcome
CI: add github action to post to first-time PRs openers
2 parents 8808573 + 1ba6d99 commit 51ab42c

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/pr_welcome.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: PR Greetings
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
greeting:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/first-interaction@v1
11+
with:
12+
repo-token: ${{ secrets.GITHUB_TOKEN }}
13+
pr-message: >+
14+
Thank you for opening your first PR into Matplotlib!
15+
16+
If you have not heard from us in a while please feel free to
17+
ping `@matplotlib/developers` or anyone who has commented on the
18+
PR. Most of our reviewers are volunteers and sometimes
19+
things to fall through the cracks.
20+
21+
You can also join us [on
22+
gitter](https://gitter.im/matplotlib/matplotlib) for real-time
23+
discussion.
24+
25+
For details on testing, writing docs, and our review process
26+
please see [the developer
27+
guide](https://matplotlib.org/devdocs/devel/index.html)
28+
29+
We strive to be a welcoming and open project, please follow our
30+
[Code of
31+
Conduct](https://github.com/matplotlib/matplotlib/blob/master/CODE_OF_CONDUCT.md).

0 commit comments

Comments
 (0)