Skip to content

Commit d3bab32

Browse files
committed
fix(actions): fix actions!
1 parent 37f1aeb commit d3bab32

File tree

3 files changed

+23
-25
lines changed

3 files changed

+23
-25
lines changed

.github/workflows/docs-checks.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ name: "Documentation Checks"
33
on:
44
push:
55
paths:
6-
- "discord/"
7-
- "docs/"
8-
- "requirements/"
9-
- "pyproject.toml"
10-
- "setup.py"
6+
- "discord/**"
7+
- "docs/**"
8+
- "requirements/**"
9+
- "*.toml"
10+
- "*.py"
1111
pull_request:
1212
paths:
13-
- "discord/"
14-
- "docs/"
13+
- "discord/**"
14+
- "docs/**"
1515
- "requirements/"
16-
- "pyproject.toml"
17-
- "setup.py"
16+
- "*.toml"
17+
- "*.py"
1818
workflow_dispatch:
1919
schedule:
2020
- cron: "0 0 * * *"

.github/workflows/lib-checks.yml

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,18 @@ name: "Library Checks"
33
on:
44
push:
55
paths:
6-
- "discord/"
7-
- "requirements/"
8-
- "pyproject.toml"
9-
- "setup.py"
10-
- ."flake8"
11-
- ".prettierrc"
6+
- "discord/**"
7+
- "requirements/**"
8+
- "*.toml"
9+
- "*.py"
10+
- ".*"
1211
pull_request:
1312
paths:
14-
- discord/
15-
- requirements/
16-
- pyproject.toml
17-
- setup.py
18-
- .flake8
19-
- .prettierrc
13+
- "discord/**"
14+
- "requirements/**"
15+
- "*.toml"
16+
- "*.py"
17+
- ".*"
2018
workflow_dispatch:
2119
schedule:
2220
- cron: "0 0 * * *"

.github/workflows/todo-checks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: "TODO Checks"
33
on:
44
push:
55
paths:
6-
- "discord/"
7-
- "docs/"
8-
- "examples/"
9-
- "tests/"
6+
- "discord/**"
7+
- "docs/**"
8+
- "examples/**"
9+
- "tests/**"
1010
branches: [master]
1111
workflow_dispatch:
1212

0 commit comments

Comments
 (0)