same as before, just ignore .github/** and then include docker.yml

This commit is contained in:
Ralf Vogler 2023-08-25 21:43:57 +02:00
parent a7d045f0e2
commit 70b5182bed

View file

@ -4,10 +4,11 @@ on:
workflow_dispatch: # allow manual trigger workflow_dispatch: # allow manual trigger
# https://github.com/orgs/community/discussions/26276 # https://github.com/orgs/community/discussions/26276
push: # on every branch, but not for PRs from forks? push: # on every branch, but not for PRs from forks?
paths-ignore: paths:
- "README.md" - '**'
- ".github/dependabot.yml" - '!README.md'
- ".github/ISSUE_TEMPLATE/**" - '!.github/**'
- '.github/workflows/docker.yml'
pull_request: # includes PRs from forks but only triggers on creation, not pushes? pull_request: # includes PRs from forks but only triggers on creation, not pushes?
branches: branches:
- "main" # only PRs against main - "main" # only PRs against main