Skip to content
This repository has been archived by the owner on Oct 5, 2023. It is now read-only.

ci: run pipeline for release branches as well #208

Merged
merged 2 commits into from
Dec 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ on:
branches:
- "main"
- "develop"
- "release/**"
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
pull_request:
branches: [main, develop]
branches: [main, develop, "release/**"]

jobs:
fossa-scan:
Expand Down
1 change: 1 addition & 0 deletions .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,5 @@ header:
- "**/*.jsx"
- "package.json"
- "src/main/webapp/schema/schema.json"
- ".husky/pre-commit"
comment: on-failure
5 changes: 4 additions & 1 deletion src/main/webapp/schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1302,7 +1302,10 @@
},
"style": {
"type": "string",
"enum": ["page", "dialog"]
"enum": [
"page",
"dialog"
]
},
"conf": {
"type": "string",
Expand Down