Skip to content

Commit

Permalink
ci.yml will not run dependencies, dependencies-package, phpcs
Browse files Browse the repository at this point in the history
… and `markdownlint` on schedule (it makes no sense).
  • Loading branch information
LastDragon-ru committed Jan 23, 2025
1 parent c754050 commit 13719bf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
dependencies:
name: Dependencies checks
runs-on: ubuntu-latest
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -67,6 +68,7 @@ jobs:
matrix:
package: ${{ fromJson(needs.settings.outputs.packages-names) }}
runs-on: ubuntu-latest
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -112,6 +114,7 @@ jobs:
phpcs:
name: PHP CodeSniffer
runs-on: ubuntu-latest
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -169,6 +172,7 @@ jobs:
markdownlint:
name: Markdownlint
runs-on: ubuntu-latest
if: ${{ github.event_name != 'schedule' }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 13719bf

Please sign in to comment.