We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a57fabc commit 4ca63e6Copy full SHA for 4ca63e6
.github/workflows/test.yml
@@ -3,12 +3,14 @@ on:
3
push:
4
schedule:
5
- cron: '0 0 1 * *'
6
+concurrency:
7
+ group: ${{ github.workflow }}-${{ github.ref }}
8
+ cancel-in-progress: true
9
jobs:
10
test:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v4
- - uses: gautamkrishnar/keepalive-workflow@v2
14
- name: Compile basic LaTeX document
15
uses: ./
16
with:
@@ -46,3 +48,11 @@ jobs:
46
48
file test/math.pdf | grep -q ' PDF '
47
49
file test/biblatex.pdf | grep -q ' PDF '
50
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