Skip to content

Commit

Permalink
Run dependency workflow on a schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
tsundvoll committed Apr 12, 2024
1 parent 9f7538c commit 417d4a1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/compile_requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ on:
branches:
- main

schedule:
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows
# In a public repository, scheduled workflows are automatically disabled when no
# repository activity has occurred in 60 days
- cron: "5 8 * * 1-5" # At 08:05 on every day-of-week from Monday through Friday

jobs:
compile-requirements:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: Run pytest

on:
push:
branches:
Expand Down

0 comments on commit 417d4a1

Please sign in to comment.