Don't run ci and valgrind for non-code changes when pushing to master

This commit is contained in:
Saúl Ibarra Corretgé 2024-09-25 22:31:58 +02:00
parent 7cfedb0952
commit 7e82ad80c1
2 changed files with 17 additions and 1 deletions

View file

@ -6,13 +6,21 @@ on:
- '**' - '**'
- '!.gitignore' - '!.gitignore'
- '!LICENSE' - '!LICENSE'
- '!TODO' - '!README.md'
- '!docs/**' - '!docs/**'
- '!examples/**' - '!examples/**'
- '.github/workflows/ci.yml' - '.github/workflows/ci.yml'
push: push:
branches: branches:
- master - master
paths:
- '**'
- '!.gitignore'
- '!LICENSE'
- '!README.md'
- '!docs/**'
- '!examples/**'
- '.github/workflows/ci.yml'
jobs: jobs:
codegen: codegen:

View file

@ -4,6 +4,14 @@ on:
push: push:
branches: branches:
- master - master
paths:
- '**'
- '!.gitignore'
- '!LICENSE'
- '!README.md'
- '!docs/**'
- '!examples/**'
- '.github/workflows/valgrind.yml'
workflow_dispatch: workflow_dispatch:
jobs: jobs: