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: on:
pull_request: pull_request:
paths: paths:
- './Dockerfile' - 'Dockerfile'
jobs: jobs:
build-docker-image: build-docker-image:

View File

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

View File

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