diff options
| author | Linus Färnstrand <faern@faern.net> | 2023-01-20 11:03:21 +0100 |
|---|---|---|
| committer | Linus Färnstrand <faern@faern.net> | 2023-01-20 11:25:05 +0100 |
| commit | fe07f05ea161983e4ef51041ed279299af4354fd (patch) | |
| tree | 0e5f4c2f4da25b267dfceb730a27734e871afab3 /.github | |
| parent | 492ad9a77fd34bbd5b5f84b857abe33343daca88 (diff) | |
| download | mullvadvpn-fe07f05ea161983e4ef51041ed279299af4354fd.tar.xz mullvadvpn-fe07f05ea161983e4ef51041ed279299af4354fd.zip | |
Use a shorter and smarter include path list for the "Daemon+CLI" job
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/daemon.yml | 48 |
1 files changed, 21 insertions, 27 deletions
diff --git a/.github/workflows/daemon.yml b/.github/workflows/daemon.yml index 4612df7f59..b9fb2988fa 100644 --- a/.github/workflows/daemon.yml +++ b/.github/workflows/daemon.yml @@ -2,33 +2,27 @@ name: Daemon+CLI - Build and test on: pull_request: - paths-ignore: - - '**/*.md' - - .github/workflows/android*.yml - - .github/workflows/frontend.yml - - .github/workflows/ios.yml - - .github/workflows/rustfmt.yml - - .github/workflows/translations.yml - - android/** - - audits/** - - ci/buildserver-* - - ci/ci-* - - dist-assets/** - - docs/** - - graphics/** - - gui/** - - ios/** - - mullvad-jni/** - - scripts/** - - .*ignore - - .editorconfig - - .gitattributes - - Dockerfile - - build.sh - - build-apk.sh - - integration-tests.sh - - prepare-release.sh - - rustfmt.toml + paths: + - '**' + - '!**/**.md' + - '!.github/workflows/**' + - '.github/workflows/daemon.yml' + - '!android/**' + - '!audits/**' + - '!build-apk.sh' + - '!build.sh' + - '!clippy.toml' + - '!deny.toml' + - '!docs/**' + - '!graphics/**' + - '!gui/**' + - '!ios/**' + - '!scripts/**' + - '!.*ignore' + - '!prepare-release.sh' + - '!rustfmt.toml' + - '!.yamllint' + workflow_dispatch: inputs: override_container_image: |
