💚 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: on:
push: push:
branches: [master] branches: [master]
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- '.github/pull_request_template.md'
- 'CONDE_OF_CUNDUCT.md'
- 'CONTRIBUTING.md'
- 'LICENSE'
- 'README.md'
tags: tags:
- v* - v*
workflow_dispatch: workflow_dispatch:
env: env:

View File

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