diff options
author | Mihai Fufezan <[email protected]> | 2023-09-12 11:48:30 +0300 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2023-09-12 11:48:30 +0300 |
commit | b6191cbc76a9d8b598ab6af6bdd224ca35460d7f (patch) | |
tree | 7ea70cbaa9099ec3953d127bdb3bff9e484051a9 /.github/workflows | |
parent | ed51fe7bac76248933c71d3958fdb9a973066dfd (diff) | |
download | Hyprland-b6191cbc76a9d8b598ab6af6bdd224ca35460d7f.tar.gz Hyprland-b6191cbc76a9d8b598ab6af6bdd224ca35460d7f.zip |
CI: don't run wlroots update in PRs
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/nix-ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/nix-ci.yml b/.github/workflows/nix-ci.yml index fccd4d09..f0de7f5c 100644 --- a/.github/workflows/nix-ci.yml +++ b/.github/workflows/nix-ci.yml @@ -4,10 +4,12 @@ on: [push, pull_request, workflow_dispatch] jobs: wlroots: + if: github.event_name != 'pull_request' uses: ./.github/workflows/nix-update-wlroots.yml secrets: inherit build: + if: always() && !cancelled() && !contains(needs.*.result, 'failure') needs: wlroots uses: ./.github/workflows/nix-build.yml secrets: inherit |