Skip to content

Commit

Permalink
Trigger CI when workflow files are changed (#36)
Browse files Browse the repository at this point in the history
Changes of the workflow files now trigger the execution of the whole
pipeline

---------

Co-authored-by: Marius Brehler <[email protected]>
  • Loading branch information
maxhoerstr and marbre authored Feb 19, 2024
1 parent 0391492 commit 5c28c03
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build_and_deploy_docu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- 'main'
paths:
- 'docs/**'
- '.github/workflows/build_and_deploy_docu.yml'


permissions:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/code_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,19 @@ name: Measure code coverage

on:
push:
branches:
- 'main'
paths:
- 'pfdl_scheduler/**'
- 'tests/**'
- '.github/workflows/**'
pull_request:
branches:
- 'main'
paths:
- 'pfdl_scheduler/**'
- 'tests/**'
- '.github/workflows/**'

permissions:
contents: read
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@ on:
- 'main'
paths:
- 'pfdl_scheduler/**'
pull_request:
- 'tests/**'
- '.github/workflows/**'
pull_request:
branches:
- 'main'
paths:
- 'pfdl_scheduler/**'
- 'tests/**'
- '.github/workflows/**'

permissions:
contents: read
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@ on:
push:
paths:
- 'pfdl_scheduler/**'
- 'tests/**'
- '.github/workflows/**'
pull_request:
branches:
- 'main'
paths:
- 'pfdl_scheduler/**'
- 'tests/**'
- '.github/workflows/**'

permissions:
contents: read
Expand Down

0 comments on commit 5c28c03

Please sign in to comment.