From 573beec48d5f27f8b32e6cf7896981185fb56dc8 Mon Sep 17 00:00:00 2001 From: Nathan Boiron Date: Sat, 2 Nov 2024 21:31:43 +0100 Subject: [PATCH] Disable CI on push The repository is configured to require PRs to change the main branch so there is no need to run the CI twice. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b19755..bf6ae1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,7 @@ name: Coding Standards & Static Analysis -on: [push, pull_request] - +on: [ pull_request] + env: php-version: '8.3'