Fixed paths glob patterns in some workflows

This commit is contained in:
Alejandro Celaya 2023-01-22 21:01:46 +01:00
parent f3855dbc6f
commit 024c9c1a7a
3 changed files with 19 additions and 19 deletions

View file

@ -3,7 +3,7 @@ name: Build docker image
on:
pull_request:
paths:
- './Dockerfile'
- 'Dockerfile'
jobs:
build-docker-image:

View file

@ -4,12 +4,12 @@ on:
pull_request:
paths-ignore:
- 'LICENSE'
- './.*'
- './*.md'
- './*.xml'
- './*.yml*'
- './*.json5'
- './*.neon'
- '.*'
- '*.md'
- '*.xml'
- '*.yml*'
- '*.json5'
- '*.neon'
push:
branches:
- main
@ -17,12 +17,12 @@ on:
- 2.x
paths-ignore:
- 'LICENSE'
- './.*'
- './*.md'
- './*.xml'
- './*.yml*'
- './*.json5'
- './*.neon'
- '.*'
- '*.md'
- '*.xml'
- '*.yml*'
- '*.json5'
- '*.neon'
jobs:
static-analysis:

View file

@ -6,12 +6,12 @@ on:
- develop
paths-ignore:
- 'LICENSE'
- './.*'
- './*.md'
- './*.xml'
- './*.yml*'
- './*.json5'
- './*.neon'
- '.*'
- '*.md'
- '*.xml'
- '*.yml*'
- '*.json5'
- '*.neon'
tags:
- 'v*'