Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Don't run the "trusted" checks if we're in a PR #85

Merged
merged 4 commits into from
Sep 9, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: CI

on:
merge_group:
pull_request:
push:
branches: [main]
Expand Down Expand Up @@ -74,6 +75,7 @@ jobs:
[ $(nix config show substituters) == "https://cache.nixos.org/" ]

run-systems:
if: github.event_name != 'pull_request'
grahamc marked this conversation as resolved.
Show resolved Hide resolved
needs: build
name: "Run ${{ matrix.systems.nix-system }}"
runs-on: "${{ matrix.systems.runner }}"
Expand Down
Loading