feat: add CI path filters and expand README (#82)

This commit is contained in:
2026-02-27 08:31:31 +02:00
committed by GitHub
parent 92cb1405fa
commit 5c23d3dcad
4 changed files with 105 additions and 1 deletions

View File

@@ -7,6 +7,9 @@ on:
- cron: "0 2 * * 1" # At 2:00 on Monday.
push:
branches: ["main"]
paths:
- "**/Dockerfile"
- ".github/workflows/**"
workflow_dispatch:
env:

View File

@@ -5,6 +5,9 @@ name: PR Build and Report
on:
pull_request:
types: [opened, synchronize, reopened]
paths:
- "**/Dockerfile"
- ".github/workflows/**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

View File

@@ -5,8 +5,20 @@ name: Lint Code Base
on:
push:
branches: [master, main]
paths:
- "**/Dockerfile"
- ".github/workflows/**"
- ".mega-linter.yml"
- ".hadolint.yaml"
- ".yamllint.yml"
pull_request:
branches: [master, main]
paths:
- "**/Dockerfile"
- ".github/workflows/**"
- ".mega-linter.yml"
- ".hadolint.yaml"
- ".yamllint.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}