forked from matplotlib/matplotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (31 loc) · 1.42 KB
/
good-first-issue.yml
File metadata and controls
36 lines (31 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
name: Add comment on good first issues
on:
issues:
types:
- labeled
permissions: {}
jobs:
add-comment:
if: github.event.label.name == 'Good first issue'
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Add comment
uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5.0.0
with:
issue-number: ${{ github.event.issue.number }}
body: |
### Good first issue - notes for new contributors
This issue is suited to new contributors because it does not require
understanding of the Matplotlib internals. This is a non-urgent task
intended for human contributors to learn how to contribute; therefore please
do not try to automate a solution using AI. To get started, please see our
[contributing guide](https://matplotlib.org/stable/devel/index).
**We do not assign issues**. Check the *Development* section in the sidebar
for linked pull requests (PRs). If there are none, feel free to start
working on it. If there is an open PR, please collaborate on the work by
reviewing it rather than duplicating it in a competing PR.
If something is unclear, please reach out on any of our [communication
channels](https://matplotlib.org/stable/devel/contributing.html#get-connected).