Skip to content

Commit 4ca63e6

Browse files
committed
Seperate keepalive
1 parent a57fabc commit 4ca63e6

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/test.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@ on:
33
push:
44
schedule:
55
- cron: '0 0 1 * *'
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
69
jobs:
710
test:
811
runs-on: ubuntu-latest
912
steps:
1013
- uses: actions/checkout@v4
11-
- uses: gautamkrishnar/keepalive-workflow@v2
1214
- name: Compile basic LaTeX document
1315
uses: ./
1416
with:
@@ -46,3 +48,11 @@ jobs:
4648
file test/math.pdf | grep -q ' PDF '
4749
file test/biblatex.pdf | grep -q ' PDF '
4850
file test/minted.pdf | grep -q ' PDF '
51+
keepalive-job:
52+
name: Keepalive Workflow
53+
runs-on: ubuntu-latest
54+
permissions:
55+
actions: write
56+
steps:
57+
- uses: actions/checkout@v4
58+
- uses: gautamkrishnar/keepalive-workflow@v2

0 commit comments

Comments
 (0)