From 329153fda6dfdf5298cc40470de5ce6ba7b57c0f Mon Sep 17 00:00:00 2001 From: slawkens Date: Sun, 2 Feb 2025 22:38:40 +0100 Subject: [PATCH] Fix branch name in workflows --- .github/workflows/cypress.yml | 4 ++-- .github/workflows/phplint.yml | 4 ++-- .github/workflows/phpstan.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 177c9ef4..c33654b7 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -1,9 +1,9 @@ name: Cypress on: pull_request: - branches: [master] + branches: [main] push: - branches: [master] + branches: [main] jobs: cypress: diff --git a/.github/workflows/phplint.yml b/.github/workflows/phplint.yml index a38b3d71..a1b9c4ac 100644 --- a/.github/workflows/phplint.yml +++ b/.github/workflows/phplint.yml @@ -1,9 +1,9 @@ name: PHP Linting on: pull_request: - branches: [master] + branches: [main] push: - branches: [master] + branches: [main] jobs: phplint: diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index 9fa39d0f..2e60e570 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -2,9 +2,9 @@ name: "PHPStan" on: pull_request: - branches: [master] + branches: [main] push: - branches: [master] + branches: [main] jobs: tests: