Skip to content

Commit

Permalink
Dont run actions if only docs or worflows changed
Browse files Browse the repository at this point in the history
  • Loading branch information
m-erhardt committed Nov 9, 2021
1 parent 4fc8290 commit 235f550
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/pycodestyle.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: pycodestyle

on: [push]
on: [push, pull_request]
paths-ignore:
- 'docs/**'
- '.github/**'

jobs:
build:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Pylint

on: [push]
on: [push, pull_request]
paths-ignore:
- 'docs/**'
- '.github/**'

jobs:
build:
Expand Down

0 comments on commit 235f550

Please sign in to comment.