Skip to content

Commit 6ccaab3

Browse files
committed
Make ci workflow depend on format workflow
Also, let Documenter workflow depend on ci workflow
1 parent 752344d commit 6ccaab3

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/Documenter.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ on:
55
branches:
66
- master
77
tags: '*'
8-
pull_request:
8+
workflow_run:
9+
workflows: ["ci"]
10+
types:
11+
- completed
912

1013
jobs:
1114
build:

.github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ name: CI
22
env:
33
JULIA_NUM_THREADS: 2
44
on:
5-
pull_request:
5+
workflow_run:
6+
workflows: ["format"]
7+
types:
8+
- completed
69
push:
710
branches:
811
- master

0 commit comments

Comments
 (0)