💚 Stop running CI when ignored files are updated

CI will now not run when some files are updated that are not related to building.
This commit is contained in:
Chris
2022-05-15 19:40:01 -04:00
committed by ajnart
parent 3529e46b11
commit 1aaa575480
2 changed files with 22 additions and 0 deletions

View File

@@ -4,8 +4,16 @@ name: Master docker CI
on:
push:
branches: [master]
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- '.github/pull_request_template.md'
- 'CONDE_OF_CUNDUCT.md'
- 'CONTRIBUTING.md'
- 'LICENSE'
- 'README.md'
tags:
- v*
workflow_dispatch:
env:

View File

@@ -6,7 +6,21 @@ name: Development CI
on:
push:
branches: [dev]
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- '.github/pull_request_template.md'
- 'CONDE_OF_CUNDUCT.md'
- 'CONTRIBUTING.md'
- 'LICENSE'
- 'README.md'
pull_request:
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- '.github/pull_request_template.md'
- 'CONDE_OF_CUNDUCT.md'
- 'CONTRIBUTING.md'
- 'LICENSE'
- 'README.md'
workflow_dispatch:
inputs:
tags: