GitHub Actions: ignore changes to files that are not related to builds (e.g. readmes, etc.)

This commit is contained in:
Karl Tauber
2024-01-24 19:23:47 +01:00
parent ca3b2b4b07
commit 91b8c02c7f
3 changed files with 12 additions and 0 deletions

View File

@@ -9,6 +9,14 @@ on:
- '*' - '*'
tags: tags:
- '[0-9]*' - '[0-9]*'
paths-ignore:
- '**.md'
- '.*'
- '**/.settings/**'
- 'flatlaf-core/svg/**'
- 'flatlaf-testing/dumps/**'
- 'flatlaf-testing/misc/**'
- 'images/**'
jobs: jobs:
build: build:

View File

@@ -13,6 +13,8 @@ on:
- 'flatlaf-fonts/**' - 'flatlaf-fonts/**'
- '.github/workflows/fonts.yml' - '.github/workflows/fonts.yml'
- 'gradle/wrapper/gradle-wrapper.properties' - 'gradle/wrapper/gradle-wrapper.properties'
- '!**.md'
- '!**/.settings/**'
jobs: jobs:
Fonts: Fonts:

View File

@@ -13,6 +13,8 @@ on:
- 'flatlaf-natives/**' - 'flatlaf-natives/**'
- '.github/workflows/natives.yml' - '.github/workflows/natives.yml'
- 'gradle/wrapper/gradle-wrapper.properties' - 'gradle/wrapper/gradle-wrapper.properties'
- '!**.md'
- '!**/.settings/**'
jobs: jobs:
Natives: Natives: