From 676987da57a3c243760c863e785d4ca58fd90a88 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Sat, 16 Dec 2023 14:33:51 +0100 Subject: [PATCH] Don't run on all pushes, only on PRs and after landing on main --- .github/workflows/ci.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 349d943..ce4a5f3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,6 +1,9 @@ name: CI -"on": [push, pull_request, workflow_dispatch] +"on": + push: + branches: [main] + pull_request: permissions: read-all