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 5e3ab00 commit bd778f9
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .editorconfig
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
@@ -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
17 changes: 15 additions & 2 deletions .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

Expand Down
19 changes: 17 additions & 2 deletions .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

Expand Down

0 comments on commit bd778f9

Please sign in to comment.