diff options
| author | Linus Färnstrand <faern@faern.net> | 2023-01-12 15:17:03 +0100 |
|---|---|---|
| committer | Linus Färnstrand <faern@faern.net> | 2023-01-20 09:53:16 +0100 |
| commit | 14bccbbb67c1d78d07380d1ac9643d3cd49ee225 (patch) | |
| tree | 263a89bba0eeafddc482a2128ac43c09d0ac42fe /.github/workflows | |
| parent | 08154bbb8463d74e145ce7831027eb5c9717cb78 (diff) | |
| download | mullvadvpn-14bccbbb67c1d78d07380d1ac9643d3cd49ee225.tar.xz mullvadvpn-14bccbbb67c1d78d07380d1ac9643d3cd49ee225.zip | |
Replace an include list with an exclude list for Android CI
The list was outdated, so not triggering on a bunch of file changes
it should have been triggering on. This might on the other hand
trigger a few times when it's not needed. But better than too seldom
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/android-app.yml | 31 |
1 files changed, 14 insertions, 17 deletions
diff --git a/.github/workflows/android-app.yml b/.github/workflows/android-app.yml index 50c10b0fc1..74b915ca68 100644 --- a/.github/workflows/android-app.yml +++ b/.github/workflows/android-app.yml @@ -3,23 +3,20 @@ name: Android - Build and test on: pull_request: paths: - - .github/workflows/android-app.yml - - android/** - - mullvad-api/** - - mullvad-daemon/** - - mullvad-jni/** - - mullvad-paths/** - - mullvad-problem-report/** - - mullvad-types/** - - talpid-core/** - - talpid-platform-metadata/** - - talpid-types/** - - talpid-types/** - - wireguard/** - - Cargo.toml - - build-apk.sh - - update-api-metadata.sh - - update-version-metadata.sh + - '**' + - '!.github/workflows/**' + - '.github/workflows/android-app.yml' + - '!audits/**' + - '!ci/**' + - '!dist-assets/**' + - '!docs/**' + - '!graphics/**' + - '!gui/**' + - '!ios/**' + - '!scripts/**' + - '!windows/**' + - '!**/**.md' + workflow_dispatch: inputs: override_container_image: |
