Skip to content

Commit

Permalink
Remove scheduled runs from all workflow actions
Browse files Browse the repository at this point in the history
  • Loading branch information
devanych committed Jan 11, 2022
1 parent a953dae commit f3f415e
Show file tree
Hide file tree
Showing 6 changed files with 90 additions and 12 deletions.
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false

[*.yml]
indent_size = 2
19 changes: 17 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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

Expand Down
19 changes: 17 additions & 2 deletions .github/workflows/db-mssql.yml
Original file line number Diff line number Diff line change
@@ -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: db-mssql

Expand Down
19 changes: 17 additions & 2 deletions .github/workflows/db-mysql.yml
Original file line number Diff line number Diff line change
@@ -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: db-mysql

Expand Down
19 changes: 17 additions & 2 deletions .github/workflows/db-pgsql.yml
Original file line number Diff line number Diff line change
@@ -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: db-pgsql

Expand Down
23 changes: 19 additions & 4 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
name: static analysis

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

jobs:
mutation:
Expand Down

0 comments on commit f3f415e

Please sign in to comment.