Skip to content

Commit 7109406

Browse files
Adding more manual triggers
1 parent 09113f3 commit 7109406

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/format_check.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
name: Format Check
22

33
on:
4+
workflow_dispatch: # Manually trigger
45
push:
5-
branches: ["master", "reuse_ci"]
6+
branches: master
67
paths:
78
- '.github/workflows/format_check.yml'
89
- '**.jl'
910
pull_request:
10-
branches: ["master"]
11+
branches: master
1112
paths:
1213
- '.github/workflows/format_check.yml'
1314
- '**.jl'

.github/workflows/make_docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
name: Make Docs
22
on:
3+
workflow_dispatch: # Manually trigger
34
push:
4-
branches: ["master", "reuse_ci"]
5+
branches: master
56
paths:
67
- '.github/workflows/make_docs.yml'
78
- 'src/**'
89
- 'docs/**'
910
tags: '*'
1011
pull_request:
11-
branches: ["master"]
12+
branches: master
1213
paths:
1314
- '.github/workflows/make_docs.yml'
1415
- 'src/**'
1516
- 'docs/**'
16-
workflow_dispatch:
1717

1818
jobs:
1919
make_docs:

0 commit comments

Comments
 (0)