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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
"CI/CD":
- all:
- changed-files:
- any-glob-to-any-file:
- ".github/workflows/**"
- "tox.ini"
- ".yamllint.yml"
"Maintenance":
- all:
- changed-files:
- any-glob-to-any-file:
- ".github/*"
- ".github/ISSUE_TEMPLATE/*"
"tests":
- all:
- changed-files:
- any-glob-to-any-file:
- "tests/**"
"docs":
- any:
- changed-files:
- any-glob-to-any-file:
- "docs/**"
- "examples/**"
- "README.rst"
"Widget":
- any:
- changed-files:
- any-glob-to-any-file:
- "urwid/widget/**"
- "urwid/numedit.py"
- "urwid/vterm.py"
"Display":
- any:
- changed-files:
- any-glob-to-any-file:
- "urwid/display/**"
"Event loop":
- any:
- changed-files:
- any-glob-to-any-file:
- "urwid/event_loop/**"
"Canvas":
- any:
- changed-files:
- any-glob-to-any-file:
- "urwid/canvas.py"
|