From 1f42f972ed96b887eaec55dfeec85e5e6c199184 Mon Sep 17 00:00:00 2001 From: Pawel Chojnacki Date: Tue, 25 Jun 2024 11:51:48 +0200 Subject: [PATCH] run only on pull requests or pushes to main or master --- .github/workflows/nix-github-actions.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/nix-github-actions.yml b/.github/workflows/nix-github-actions.yml index 1e582c4813..7d329e8cc1 100644 --- a/.github/workflows/nix-github-actions.yml +++ b/.github/workflows/nix-github-actions.yml @@ -1,11 +1,11 @@ name: Nix Flake actions -on: push - # pull_request: - # push: - # branches: - # - master - # - main +on: + pull_request: + push: + branches: + - master + - main jobs: nix-matrix: