Skip to content

Commit

Permalink
updated the two test jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
vsyrgkanis committed Jul 20, 2024
1 parent ce920f2 commit bc63d5c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 146 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-and-transform-R-notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
fi
- name: Set notebooks changed to true for schedule
if: github.event_name == 'schedule'
if: "! ((github.event_name == 'push') || (github.event_name == 'pull_request'))"
id: set_check_notebooks_true
run: |
# we run all folders if it is the weekly scheduled run to
Expand Down
143 changes: 0 additions & 143 deletions .github/workflows/pr-check.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/python-notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ jobs:
echo "No Python notebooks changed in folder ${{ matrix.directory }} in this PR."
fi
- name: Set notebooks changed to true for schedule
if: github.event_name == 'schedule'
- name: Set notebooks changed to true for schedule (or other ways of triggering the job)
if: "! ((github.event_name == 'push') || (github.event_name == 'pull_request'))"
id: set_check_notebooks_true
run: |
# we run all folders if it is the weekly scheduled run to
Expand Down

0 comments on commit bc63d5c

Please sign in to comment.