Skip to content

Commit 2997272

Browse files
authored
Merge pull request #98 from liquibase/DAT-16095
DAT-16095 DevOps :: Configure liquibase-teredata repo to use build-logic
2 parents 48fab59 + e2e4364 commit 2997272

14 files changed

+227
-593
lines changed

.github/dependabot.yml

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
version: 2
22
updates:
3-
- package-ecosystem: maven
4-
directory: "/"
5-
schedule:
6-
interval: daily
7-
open-pull-requests-limit: 10
3+
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
9+
- package-ecosystem: "maven"
10+
directory: "/"
11+
schedule:
12+
interval: "daily"
13+

.github/release-drafter.yml

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
2+
name-template: 'Support for $OWNER $REPOSITORY Extension v$NEXT_MINOR_VERSION'
3+
tag-template: 'v$NEXT_MINOR_VERSION'
4+
exclude-labels:
5+
- 'skipReleaseNotes'
6+
categories:
7+
- title: ':green_book: Notable Changes'
8+
labels:
9+
- 'notableChanges'
10+
- title: '🚀 New Features'
11+
labels:
12+
- 'TypeEnhancement'
13+
- 'TypeTest'
14+
- title: '🐛 Bug Fixes 🛠'
15+
labels:
16+
- 'TypeBug'
17+
- title: '💥 Breaking Changes'
18+
labels:
19+
- 'breakingChanges'
20+
- title: '🤖 Security Driver and Other Updates'
21+
collapse-after: 5
22+
labels:
23+
- 'sdou'
24+
- 'dependencies'
25+
- title: '👏 New Contributors'
26+
labels:
27+
- 'newContributors'
28+
29+
30+
change-template: '- (#$NUMBER) $TITLE @$AUTHOR '
31+
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
32+
version-resolver:
33+
major:
34+
labels:
35+
- 'major'
36+
minor:
37+
labels:
38+
- 'minor'
39+
patch:
40+
labels:
41+
- 'feature'
42+
- 'enhancement'
43+
- 'patch'
44+
- 'bugfix'
45+
- 'sdou'
46+
default: minor
47+
template: |
48+
## Changes
49+
50+
$CHANGES
51+
52+
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...$REPOSITORY-$RESOLVED_VERSION
53+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Attach Artifact to Release
2+
3+
on:
4+
pull_request:
5+
types:
6+
- closed
7+
8+
jobs:
9+
10+
attach-artifact-to-release:
11+
uses: liquibase/build-logic/.github/workflows/extension-attach-artifact-release.yml@v0.5.3
12+
secrets: inherit

.github/workflows/build-nightly.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# This workflow will build the extension against the latest Liquibase artifact
2+
name: "Nightly build"
3+
4+
on:
5+
schedule:
6+
- cron: '0 7 * * 1-5'
7+
8+
jobs:
9+
nightly-build:
10+
uses: liquibase/build-logic/.github/workflows/os-extension-test.yml@v0.5.3
11+
with:
12+
nightly: true
13+
secrets: inherit

.github/workflows/ci-report.yml

-50
This file was deleted.

.github/workflows/ci.yml

-162
This file was deleted.

.github/workflows/codeql.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CodeQL
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [ "main" ]
7+
pull_request:
8+
# The branches below must be a subset of the branches above
9+
branches: [ "main" ]
10+
schedule:
11+
- cron: '16 14 * * 4'
12+
13+
jobs:
14+
codeql:
15+
uses: liquibase/build-logic/.github/workflows/codeql.yml@v0.5.3
16+
secrets: inherit
17+
with:
18+
languages: '["java"]'

0 commit comments

Comments
 (0)