Skip to content

Commit 26a6c57

Browse files
committed
fix:make is_release optional
1 parent d781cf5 commit 26a6c57

2 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44
workflow_call:
55
inputs:
66
is_release:
7-
required: true
7+
required: false
88
type: boolean
9-
9+
default: false
1010

1111
jobs:
1212

.github/workflows/checks.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
name: SHACL validation
22

33
on:
4-
pull_request:
5-
paths:
6-
- 'schema/**'
7-
84
workflow_call:
95
inputs:
106
is_release:
11-
required: true
7+
required: false
128
type: boolean
9+
default: false
10+
11+
pull_request:
12+
paths:
13+
- 'schema/**'
1314

1415
jobs:
1516
validate:

0 commit comments

Comments
 (0)