-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from liquibase/DAT-16097
DAT-16097 DevOps :: Configure liquibase-maxdb repo to use build-logic
- Loading branch information
Showing
14 changed files
with
225 additions
and
588 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: maven | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
|
||
- package-ecosystem: "maven" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
|
||
name-template: 'Support for $OWNER $REPOSITORY Extension v$NEXT_MINOR_VERSION' | ||
tag-template: 'v$NEXT_MINOR_VERSION' | ||
exclude-labels: | ||
- 'skipReleaseNotes' | ||
categories: | ||
- title: ':green_book: Notable Changes' | ||
labels: | ||
- 'notableChanges' | ||
- title: '🚀 New Features' | ||
labels: | ||
- 'TypeEnhancement' | ||
- 'TypeTest' | ||
- title: '🐛 Bug Fixes 🛠' | ||
labels: | ||
- 'TypeBug' | ||
- title: '💥 Breaking Changes' | ||
labels: | ||
- 'breakingChanges' | ||
- title: '🤖 Security Driver and Other Updates' | ||
collapse-after: 5 | ||
labels: | ||
- 'sdou' | ||
- 'dependencies' | ||
- title: '👏 New Contributors' | ||
labels: | ||
- 'newContributors' | ||
|
||
|
||
change-template: '- (#$NUMBER) $TITLE @$AUTHOR ' | ||
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. | ||
version-resolver: | ||
major: | ||
labels: | ||
- 'major' | ||
minor: | ||
labels: | ||
- 'minor' | ||
patch: | ||
labels: | ||
- 'feature' | ||
- 'enhancement' | ||
- 'patch' | ||
- 'bugfix' | ||
- 'sdou' | ||
default: minor | ||
template: | | ||
## Changes | ||
$CHANGES | ||
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...$REPOSITORY-$RESOLVED_VERSION | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Attach Artifact to Release | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
|
||
jobs: | ||
|
||
attach-artifact-to-release: | ||
uses: liquibase/build-logic/.github/workflows/[email protected] | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# This workflow will build the extension against the latest Liquibase artifact | ||
name: "Nightly build" | ||
|
||
on: | ||
schedule: | ||
- cron: '0 7 * * 1-5' | ||
|
||
jobs: | ||
nightly-build: | ||
uses: liquibase/build-logic/.github/workflows/[email protected] | ||
with: | ||
nightly: true | ||
secrets: inherit |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: CodeQL | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: [ "main" ] | ||
schedule: | ||
- cron: '16 14 * * 4' | ||
|
||
jobs: | ||
codeql: | ||
uses: liquibase/build-logic/.github/workflows/[email protected] | ||
secrets: inherit | ||
with: | ||
languages: '["java"]' |
Oops, something went wrong.