Skip to content

Commit

Permalink
Ignore file paths in workflows that are not relevant to linters and D…
Browse files Browse the repository at this point in the history
…ocker image generation and testing (#2376)
  • Loading branch information
bdovaz authored Feb 19, 2023
1 parent 4432c8c commit 619de88
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/deploy-DEV-linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,18 @@
name: "Build & Deploy - DEV linters"
on:
push:
branches-ignore: [main]
branches-ignore:
- main
paths-ignore:
- .github/CONTRIBUTING.md
- CHANGELOG.md
- README.md
pull_request:
branches-ignore: []
paths-ignore:
- .github/CONTRIBUTING.md
- CHANGELOG.md
- README.md

###############
# Set the Job #
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/deploy-DEV.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,18 @@
name: "Build & Deploy - DEV"
on:
push:
branches-ignore: [main]
branches-ignore:
- main
paths-ignore:
- .github/CONTRIBUTING.md
- CHANGELOG.md
- README.md
pull_request:
branches-ignore: []
paths-ignore:
- .github/CONTRIBUTING.md
- CHANGELOG.md
- README.md

###############
# Set the Job #
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/test-mega-linter-runner.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
---
name: "Test mega-linter-runner"
on: [push, pull_request]
on:
push:
paths-ignore:
- .github/CONTRIBUTING.md
- CHANGELOG.md
- README.md
pull_request:
paths-ignore:
- .github/CONTRIBUTING.md
- CHANGELOG.md
- README.md

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
Expand Down

0 comments on commit 619de88

Please sign in to comment.