From 7e5a9468e79cc788ac6abd8b6329a4cc255c65a9 Mon Sep 17 00:00:00 2001 From: devanych Date: Tue, 11 Jan 2022 16:21:12 +0300 Subject: [PATCH] Remove scheduled runs from all workflow actions --- .github/workflows/build.yml | 19 +++++++++++++++++-- .github/workflows/mutation.yml | 17 +++++++++++++++-- .github/workflows/static.yml | 19 +++++++++++++++++-- 3 files changed, 49 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index da869524..99d3fbd1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,8 +1,23 @@ on: pull_request: + paths-ignore: + - 'docs/**' + - 'README.md' + - 'CHANGELOG.md' + - '.gitignore' + - '.gitattributes' + - 'infection.json.dist' + - 'psalm.xml' + push: - schedule: - - cron: '0 0 * * *' + paths-ignore: + - 'docs/**' + - 'README.md' + - 'CHANGELOG.md' + - '.gitignore' + - '.gitattributes' + - 'infection.json.dist' + - 'psalm.xml' name: build diff --git a/.github/workflows/mutation.yml b/.github/workflows/mutation.yml index 5ec17711..68fbaa89 100644 --- a/.github/workflows/mutation.yml +++ b/.github/workflows/mutation.yml @@ -1,8 +1,21 @@ on: pull_request: + paths-ignore: + - 'docs/**' + - 'README.md' + - 'CHANGELOG.md' + - '.gitignore' + - '.gitattributes' + - 'psalm.xml' + push: - schedule: - - cron: '0 0 * * *' + paths-ignore: + - 'docs/**' + - 'README.md' + - 'CHANGELOG.md' + - '.gitignore' + - '.gitattributes' + - 'psalm.xml' name: mutation test diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 789b8c57..64229c31 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -1,8 +1,23 @@ on: pull_request: + paths-ignore: + - 'docs/**' + - 'README.md' + - 'CHANGELOG.md' + - '.gitignore' + - '.gitattributes' + - 'infection.json.dist' + - 'phpunit.xml.dist' + push: - schedule: - - cron: '0 0 * * *' + paths-ignore: + - 'docs/**' + - 'README.md' + - 'CHANGELOG.md' + - '.gitignore' + - '.gitattributes' + - 'infection.json.dist' + - 'phpunit.xml.dist' name: static analysis