Skip to content

Commit 9fe5b5f

Browse files
committed
feat: create sql data project
1 parent 3f74d2b commit 9fe5b5f

57 files changed

Lines changed: 3257 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: maven
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
labels:
8+
- dependencies

.github/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- ignore-for-release
5+
- github-actions
6+
authors:
7+
- octocat
8+
- renovate[bot]
9+
- dependabot[bot]
10+
categories:
11+
- title: Breaking Changes 🛠
12+
labels:
13+
- breaking-change
14+
- title: Exciting New Features 🎉
15+
labels:
16+
- enhancement
17+
- feature
18+
- title: Bug fixes 🐛
19+
labels:
20+
- bug
21+
- title: Other Changes 🔄
22+
labels:
23+
- "*"

.github/workflows/build-branch.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Build branch
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
- '!main'
8+
- '!fix/[0-9]+.[0-9]+.x'
9+
- '![0-9]+.x'
10+
- '!dependabot/**'
11+
12+
jobs:
13+
branch:
14+
uses: lorislab/ci-templates/.github/workflows/lib-build-branch.yml@main
15+
secrets:
16+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

.github/workflows/build-pr.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Build pr
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
pr:
8+
uses: lorislab/ci-templates/.github/workflows/lib-build-pr.yml@main
9+
secrets:
10+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Build release
2+
on:
3+
push:
4+
tags:
5+
- '**'
6+
jobs:
7+
release:
8+
uses: lorislab/ci-templates/.github/workflows/lib-build-release.yml@main
9+
secrets:
10+
GPG_PRIVATE_KEY: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
11+
GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
12+
SERVER_USERNAME: ${{ secrets.MAVEN_USERNAME }}
13+
SERVER_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}

.github/workflows/build.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Build
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- 'main'
8+
- 'fix/[0-9]+.[0-9]+.x'
9+
- '[0-9]+.x'
10+
11+
jobs:
12+
build:
13+
uses: lorislab/ci-templates/.github/workflows/lib-build.yml@main
14+
secrets:
15+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: Create fix branch
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
fix:
6+
uses: lorislab/ci-templates/.github/workflows/common-create-fix-branch.yml@main
7+
secrets:
8+
CI_PAT_PR: ${{ secrets.CI_PAT_PR }}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Create new build
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build:
8+
uses: lorislab/ci-templates/.github/workflows/common-new-build.yml@main
9+
secrets:
10+
CI_PAT_PR: ${{ secrets.CI_PAT_PR }}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: Create release
2+
on:
3+
workflow_dispatch:
4+
jobs:
5+
release:
6+
uses: lorislab/ci-templates/.github/workflows/common-create-release.yml@main
7+
secrets:
8+
CI_PAT_PR: ${{ secrets.CI_PAT_PR }}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ buildNumber.properties
1515
.project
1616
# JDT-specific (Eclipse Java Development Tools)
1717
.classpath
18+
19+
.idea
20+
*.iml

0 commit comments

Comments
 (0)