From cf9bf5955032d6ce66f7ac550884aca7e20f56e7 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Thu, 12 Dec 2024 12:06:20 +0100 Subject: [PATCH] CI: Remove branch conditional from nightly Android build Apart from the fact that this workflow is failing every time, we don't need to check the branch we're on since it's only invoked for the default branch of the repository. We can also remove the `always()` since there are no job dependencies nor do we want this to be uncancelable. --- .github/workflows/nightly-android.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly-android.yml b/.github/workflows/nightly-android.yml index e1c752a9199..56ab72b104d 100644 --- a/.github/workflows/nightly-android.yml +++ b/.github/workflows/nightly-android.yml @@ -20,7 +20,7 @@ concurrency: jobs: CI: runs-on: ${{ matrix.os }} - if: always() && github.repository == 'LadybirdBrowser/ladybird' && github.ref == 'refs/heads/master' + if: github.repository == 'LadybirdBrowser/ladybird' strategy: fail-fast: false matrix: