Skip to content

Commit eccc200

Browse files
committed
MODINVSTOR-1540 - Implement caller-action for schemas reporting
1 parent e6cbe15 commit eccc200

File tree

2 files changed

+37
-288
lines changed

2 files changed

+37
-288
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Schema changes (mod-inventory-storage)
2+
3+
on:
4+
push:
5+
branches: ["**"]
6+
paths:
7+
- "ramls/**/*.json"
8+
- "!ramls/examples/**"
9+
- "!ramls/raml-util/**"
10+
pull_request:
11+
branches: ["**"]
12+
paths:
13+
- "ramls/**/*.json"
14+
- "!ramls/examples/**"
15+
- "!ramls/raml-util/**"
16+
release:
17+
types: [published]
18+
workflow_dispatch:
19+
inputs:
20+
base:
21+
description: "Optional base ref- tag/commit (e.g. v19.4.3)"
22+
required: false
23+
head:
24+
description: "Optional head ref - tag/commit (e.g. v19.5.4)"
25+
required: false
26+
27+
permissions:
28+
contents: read
29+
pull-requests: write
30+
31+
jobs:
32+
schema-changes:
33+
uses: folio-org/schema-changes-reporting/.github/workflows/reusable-schema-changes.yml@master
34+
with:
35+
repository: ${{ github.repository }}
36+
base: ${{ github.event.inputs.base || '' }}
37+
head: ${{ github.event.inputs.head || '' }}

.github/workflows/schema-changes-reporting.yml

Lines changed: 0 additions & 288 deletions
This file was deleted.

0 commit comments

Comments
 (0)