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 d09b324 commit 7e5a946
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 6 deletions.
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 7e5a946

Please sign in to comment.