Skip to content

Commit

Permalink
Add crontab-based build (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor authored Dec 25, 2023
1 parent 0d75bf7 commit 3618036
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/keep-alive.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Keep workflows enabled
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
keep-alive:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: git checkout -b keep-alive
- uses: gautamkrishnar/keepalive-workflow@v1
2 changes: 2 additions & 0 deletions .github/workflows/miktex.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
- '.github/workflows/miktex.yml'
- Dockerfile
- 'example-*.tex'
schedule:
- cron: "5 4 * * FRI"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/texlive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
paths:
- '.github/workflows/texlive.yml'
- 'example-*.tex'
schedule:
- cron: "5 4 * * FRI"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down

0 comments on commit 3618036

Please sign in to comment.